events form - newbie php!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
rwahdan
Forum Newbie
Posts: 23
Joined: Thu Feb 12, 2009 1:49 am

events form - newbie php!

Post by rwahdan »

i need to do the following:

1. date field which have a button that will show calender
2. after update event handler which will check database then check available times in that date which dont have events
3. return results to the second field which will be drop down menu that will have the times available
4. inserting more filed (no problem)
5. save button to save changes to the database

please advise or give some usable links for the above project that i have to do for my boss.

thanks guys!
watson516
Forum Contributor
Posts: 198
Joined: Mon Mar 20, 2006 9:19 pm
Location: Hamilton, Ontario

Re: events form - newbie php!

Post by watson516 »

rwahdan wrote:i need to do the following:

1. date field which have a button that will show calender
2. after update event handler which will check database then check available times in that date which dont have events
3. return results to the second field which will be drop down menu that will have the times available
4. inserting more filed (no problem)
5. save button to save changes to the database

please advise or give some usable links for the above project that i have to do for my boss.

thanks guys!

1. The calendar pop-up might be best done with javascript.
2. Query for the date and all events on that date. From there you can display the times that are free.
3. Use 2. to populate a select box.
4.
5. Update query
Post Reply