SQL
SELECT * FROM `events` ORDER BY `eventStart` WHERE `eventEnd`>$now
Somehow I keep getting this error:
QUOTE
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/portal/public_html/sandbox/<blocked>/calendar/calendar.php on line 63
The eventEnd field is a MySQL datetime field: "YYYY-MM-DD HH:mm:ss"
How do I do this?

