Timestamp value to Date - PHP Views : 149
Tagged in : PHP
0 0
Send mail
Timestamp value to Date
Use the below code to convert timestamp value to date
<?php
$dt=1284070411;
echo date("Y:m:d",$dt);
?>
By Nirmala, On - 2010-09-10



    Login to add Comments .