Event handling in php?

MAsca

New member
I have a calendar in php with date displays in a table.What I want is when mouse is over that date / click on the date it opens the list of event of that day from the database(MySql).
Any help will be appreciated.
 
simplest way is -

1) have the particular date displayed as a link (a href and ?date='[date]') which will be processed by a CGI or PHP.
The process can be done by requesting all event listed on that particular date in the database.

OR

2) to do it without page refresh have the link target to a iframe.

OR

3) get the date into a input text field and process the form
 
Back
Top