Can anyone please explain me this weird behaviour of these timestamps? There's an application that converts the timestamps to dates like this:
1184947071570 - 07-20-2007 11:57
1190394533377 - 09-21-2007 13:08
I cannot access the source code of that application. But I got the timestamps from the database, and when I convert to date using php this is what happens:
1184947071570 - 20 April 1955 13:17:54
1190394533377 - 27 October 1991 14:39:45
I used this code in php:
date("l, j F Y H:i:s", $timestamp)
The dates are completely different! How can I get the correct dates??
Thank you.