Hi everyone,
Of course, as soon as I ask for help, I solve my own problem. I didn't think
about it returning dates that would be negative in time, so I mainly just
needed to add another condition that made sure it returned no dates previous
to the Monday.
$db_result = mysql_query("SELECT * FROM tblTasks_Comments WHERE
TO_DAYS(Date) - TO_DAYS('2003-10-13') <= 5 AND TO_DAYS(Date) -
TO_DAYS('2003-10-13') >= 0", $db_conn);
Sorry for taking your time, but if anyone has a more efficient way to do
this, I'm open to suggestions.
Cheers!