Online booking system with php [closed]
Im l开发者_JS百科ooking for any tutorial for online booking and reservation using php and mysql. I cant find so much from google.
I would suggest learning more about PHP and MySQL first, and using that knowledge to create your own app. Here are some good resources for beginning PHP and MySQL knowledge.
http://www.w3schools.com
http://www.tizag.com
What about to build your own system or search for an existing booking system and studying this ?
-> http://sourceforge.net/projects/phpreservation/ -> http://php.brickhost.com/
Even though this is an old post, I would like to give my opinion.
It is possible to build a PHP and MySQL online booking system.
The hardest part I think of building one is date programming.
Best solution is build a flow chart IPO chart, and write notes.
The way I solve this is by dividing tables in mySQL, one for the actual product, the 2nd for block dates.
The third is for allotments and features.
There after you would need to create mysql query for three tables and connect the product table with the blocks, and allotments.
Once you do that you would have to create a form, and the hardest part is establishing a query, or basically code up the search to get the results you need based upon the three tables you created, make sure that the primary ID for the product table is posted in the other two tables so the primary ID can be identified when the query of the search result post.
Its like building a simple shopping cart + a bit of logic builds booking system.
Warn you if you develop alone, it takes months. Beleave me. Im up to four months, * 8 hour days. But its working for me. Also, javaScript or should I say jQuery helps on some features of booking engines.
精彩评论