Hey all! Im having trouble parsing a Unix Timestamp. This is the scenario...
I have a script which inserts news posts. When mysql recieves this news it creates it an ID from auto increment and creates a Timestamp using the NOW() function. On my news.php page I have the following line which parses the Timestamp into the following format...
print date("d.m.y @ H:i:s", $row["date"]);
The problem is that the date() function isnt displaying the correct date, it displays:
19.01.38 @ 03:14:07 (as most recent post)
Help appeciated. Thanks,