Jump to content

[SOLVED] convert Date-Time to unix stamp and back


otuatail

Recommended Posts

Hi I am trying to convert a date to a 10 digit unix time stamp and insert it intoi a databse, and to read it back.

 

The mktime() function strangly wants the american version of 'mm/dd/yy'

but the results are wrong.

 

<?php
$stamp = mktime(12,30, 0, 03, 17, 2009);  // 17th March 200 12:30
echo($stamp . "<br>");
$day = date("D dS M h:i a Y", $row['Stamp']);
echo($day . "<br>");
?>

 

Results

 

1237293000

Thu 01st Jan 12:00 am 1970

 

Desmond.

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.