Thursday, 9 August 2012

Date convertion from Y-m-d to d-m-Y

Use strtotime() and date():
$originalDate = "2010-03-21";
$newDate = date("d-m-Y", strtotime($originalDate));

No comments:

Post a Comment