getting date
Posted: Tue May 16, 2006 7:33 pm
how can I pull date from this
1075960968
1075960968
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<?php
// Prints something like: Monday 15th of August 2005 03:12:46 PM
echo date('l dS \of F Y h:i:s A', 1075960968);
?>