Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
2k views

Airline reservation systems

What are the best practices & technologies used by airline reservation systems, and are these accessible to developers in some type of pay-per-use model? Probably being naive but I figured if I ...
4
votes
1answer
54 views

What application / language to make a database for booking accomodation?

Hey guys I'm going to have a lot of free time once my exams are out of the way (Second year comp sci). I want to learn php, and I have a project to work on - making a form for a website to book a room ...
3
votes
1answer
65 views

How City taxi booking softwares work? [closed]

City-taxi booking requires to fulfill multiple criteria, Customer satisfaction (Even before 24 hours, when nothing is certain, software should be able to tell yes or no to the customer (for cab ...
3
votes
1answer
161 views

Checking for overlapping car reservations

I'm writing a simple booking program for a car rental (a school assignment). Me and my buddy are trying to make the system a little more advanced than the assignment dictates, but we're having some ...
2
votes
1answer
100 views

How to get available dates with reservations?

I am trying to build a system which lets users reserve a item, let's say a laptop.. My table looks like this: Table 'items' id int(20) PK auto_increment type int(20) FK(types.id) name varchar(200) ...
2
votes
4answers
864 views

What type of technology do airlines use for booking tickets?

I have always been fascinated by the algorithm airlines use when we book the tickets. I am an undergraduate CS student and I am really interested in knowing how this works. For example, how does it ...
2
votes
4answers
2k views

How does the Hotel and Airlines booking websites work?

Let's say we want to build an online booking website for hotels and airlines.... I'm not sure from where to start... Is there some system I can build my application on top of it or something? ...
1
vote
1answer
70 views

Mysql Query between 2 dates and from 2 fields always give wrong result

I have above table called bookedroom where I am taking dates from which date to which date for 1 room will be book. Now whenever I run an SQL query sometime it skip dates which is not showing on the ...
1
vote
2answers
641 views

Ticket Reservation System Using PHP Implementation

How to prevent a seat from being booked twice in a reservation system? I am making a model reservation system for air travel in PHP and MYSQL as a project. I have a small problem. Here ticket and ...
1
vote
3answers
269 views

Rent A Car - How to check if car is available between two dates?

I'm making a rent a car site and cars can be reserved for a given time period. For example a car is reserved between 01.01.2011 - 10.01.2011 and 15.01.2011 - 25.01.2011. (dd.mm.yyyy) So the car is ...
1
vote
2answers
646 views

query for available rooms in hotel reservation

i was tasked to create an online hotel reservation system. the problem i encountered is the query to find the available rooms for a certain room category for a certain date range. My database design ...
1
vote
1answer
98 views

How to remove certain row from option tag?

I'm making calendar reservation and I want to make if reservation is not available, in option tag to say reserved or to be hidden. In mysql have time table: id time_reservation 1 07:00 - ...
1
vote
2answers
121 views

Problem with an agenda/availability query

I have a mysql table with users and their weekly calendar. Every user can set his own availability for the week (morning, afternoon, night / MON thru SAT), and that is not going to change often, ...
1
vote
2answers
2k views

Hotel Reservation system Database schema

I am about to develop a online hotel reservation system...using php and mysql... I have some doubts about my current database schema and the business logic to get the hotels in which rooms are free ...
0
votes
0answers
87 views

Own MySql PHP Reservation system

I'm trying to make a own reservation system I've already made the mysql tables. The struct of tables is: table object **Id-----name----type** 1----HotName----1 table object_type **Id----Name** ...
0
votes
1answer
169 views

Implementing Reservation System Using Ruby on Rails

Build a restaurant reservation system with the following function: Here's the list of prioritized functions: Restaurant Owner can set number of tables (assuming all 4 seating per table) can review ...
0
votes
1answer
321 views

What is the programming approach and algorithms involved in hotel booking system?

Hye guys, I'd really hope there are gurus out there that could help me out in understanding this. For weeks, ive been trying to understand how hotel reservation system works, in programmer's point ...
0
votes
0answers
80 views

Button to change content

What I want to do is my own booking site in PHP, now the site is almost done the only thing I want to do left is the ability for my "co-workers" to swap content or close the registration on the ...
0
votes
1answer
311 views

Storing seat reservation status in Database?

I'm doing a seat reservation system with PHP and MySQL. I need to store the seat info(booked/free) in the database. The users are allowed to book 2 weeks in advance ! So, how can i store this much ...
0
votes
3answers
642 views

hotel reservation system - ihotelier

I am building a hotel website and I want to include online reservation. The hotel already has its own reservation system installed, but I don't know if I will be able to access it with a php script. I ...
0
votes
0answers
188 views

Reverse engineering airline reservations systems [closed]

I saw an interesting conversation on here about airline reservation systems and the services that connect them (like Sabre). This is an almost identical analog to a problem I've been trying to figure ...
0
votes
1answer
431 views

Ticketmaster style ticket reservation system? PHP / MySQL

I am wanting to find information on how I can construct a ticket reservation system with PHP and MySQL. The tickets available will be for individual events that have limited places available. The ...
0
votes
0answers
223 views

Hotel Booking Agent [closed]

I am assigned to find an Hotel comparison prices - booking reservation system (booking agent) which will include many hotels. The hotels will be included in local database and not from other agents ...
0
votes
2answers
160 views

Money reservation with First Data API on client credit card

I need to know is it possible to reserve or lock money with First Data API. Actually I don't know if process I am looking for is actually called "reservation", but I am thinking of standard procedure ...
0
votes
1answer
953 views

Open Source Salon Management Software Suggestions?

I'm looking for a decent open source salon management system to recommend to a friend. I've considered writing a new system in .Net but the website aspect is already covered. What's really required at ...
0
votes
2answers
1k views

PHP/MySQL Reservation System

I'm currently working on an Equipment Reservation System for my school. Here's basically what my tables look like: tblEquipment: id name description 1 Camera Takes ...
-1
votes
3answers
95 views

Booking system for multiple users [closed]

After lots of googling and searching on stackoverflow I can't seem to find anything that fits the bill. So what I am looking for: A online booking system where users can list their items and manage ...