Forum Moderators: coopster
If yes, how can it be done?
Since this is a PHP forum, I will show you how you can write the SQL query with an input from PHP.
Formatted current date:
$mydate = date("d-m-Y");
OR
if you have saved the date on timestamp:
$mydate = time();
mysql_query("SELECT * FROM table1 WHERE mydate = '". $mydate ."'")
Habtom