What i want to do is get the records that are greater than or equal to a certain date:
$strSQL = "select * from mytable where date >=" . $date;
I think that the above is just comparing the string $date to the date. The database is mySQL. Can someone let me in on the big secret? lol
CES
$strSQL = "select * from mytable where date >=" . $date;
I think that the above is just comparing the string $date to the date. The database is mySQL. Can someone let me in on the big secret? lol
CES