// description of your code here
Convert Mysql Date
I am Using the following function to convert mysql date format into my req.


function uk_date_to_mysql_date($date){
$date_year=substr($date,6,4);
$date_month=substr($date,3,2);
$date_day=substr($date,0,2);
$date=date("Y-m-d", mktime(0,0,0,$date_month,$date_day,$date_year));
return $date;
}

echo uk_date_to_mysql_date($row['date']); //// $row['date'] is in the form :yyyy-mm-dd.

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/2wdaoACTNfw/10207