Hi Trackz,
$added = date ("YmdHis");
Get php to make a variable containing the date in the format specified above. This would mean calling
$today = date ("Ymd");
$yesterday = date("Y").date("m").date("d")+1;
Then query the database with a string like:
$query = "SELECT the, fields, you, want, to, retrieve FROM table WHERE date like '%$date%' ";
Good luck,
Tuurlijk!