I have this date value being stored into my database from a VBScript application that I need to read out and generate a report on in PHP. The problem I have is converting that date value into a date value in PHP but I can't seem to get anything meaningful.
The value being store from VBScript is Now()*24*60*60
and the actual number it generates is '3603612890' and the approximate time it should equal is '2014/03/10 11:35:15', give or take a few seconds.
How do I convert this number '3603612890' to equal this value '2014/03/10 11:35:15' in PHP
Thanks