i want to make this 1030994967 to a date.. but i want it to print to the file like this 1030994967, and i want the script to pull it from a file and convert it.. how can i do this
Check out the date() function:
http://www.php.net/manual/en/function.date.php
Example:
echo date('m/d/Y',$datestampfromfile);