I got this datestamp in my table database how to convert this number to :
0109191841 - 2001 September 19
Try this...
<?php
$x = date(Y F d, 0109191841);
echo("$x");
?>
Ron
You can make any date/time format you want. Here is a great reference...
http://php.net/manual/en
it's not working. and the link u gave is useless. looks like you gave me a big, thick and huge book to find that problem 🙁
Sorry. It was kind of late. Just add the quotes as you can see below. I tested it and it works fine. The url I sent you was shortened for some reason... here is the actual url I wanted you to see.
http://www.php.net/manual/en/function.date.php
<?php ///the only difference is the two sets of quotes. $x = date("Y F d", "0109191841");