Hi,
I am having a prob inserting a timestamp into database.
My form passes a manually entered date in this format dd-mm-yy (eg 01-02-06).
I then use this code to seperate the date, month and year;
$date = explode("-", $date);
$date = mktime(0,0,0,$date[1],$date[0],$date[2]);
Problem is that the timestamp doesnt seem to change, no matter what date i input, it stores in the database as 8388607
Thanks in advance.