<?php
//old time
$old_time = '2008-03-05 18:05:44';
//convert to UNIX timestamp
$timestamp = strtotime($old_time);
//fetch new format
$new_time = date('m-d-Y H:i:s' , $timestamp);
//output new time
echo $new_time;
?>
Reputation Points: 14
Solved Threads: 14
Junior Poster in Training
Offline 84 posts
since Nov 2007