Change Date Format yep Code: $insert[review_date] = date("j F, Y",strtotime($insert[review_date])); will change it from 30/08/2005 to 30 August, 2005
Change Date Format Yes, this could be done with the templates (see forma's posting) Where do you like to change the date and to which date format? Please post an example.
Change Date Format Just add the following code in the php part of the review_header template (I would imagine that's where you want this) Code: $insert[review_date] = date("j F, Y",strtotime($insert[review_date])); then add $insert[review_date] to the html part, though it should already be there. Hope that helps.
Change Date Format my code in php is $colvalue = date('Y-m-d', mktime (0, 0, 0, $_POST[$colname."_months"], $_POST[$colname."_days"], $_POST[$colname."_years"])); the output is 2008-01-21 i want it to be displayed as 21-jan-2008 how to change the code for making the change?? somebody pls help me..