Code: Select all
<?php
$date = strtotime("02/28/2010");
$new_date_format = date("y-m-d", $date);
echo $new_date_format;
?>
Post by Neo » Sun Feb 07, 2010 4:06 pm
Code: Select all
<?php
$date = strtotime("02/28/2010");
$new_date_format = date("y-m-d", $date);
echo $new_date_format;
?>