I'm developing a calendar for a client. I want to list all the events for a certain day (can be more than one event per day), and here is the code I have for that:
//Limit a MySQL query to selected month only.
$low = mktime(0, 0, 0, $month, 1, $year);
$high = mktime(0, 0, 0, $month, $max_days...