This topic is locked

Date Fromat 2

12/9/2008 11:49:20 AM
PHPRunner General questions
P
pidejean author

Please can you tell me how I can display my colunm date (DD/MM/YYYY) in to Month format.
Exemple:
01/01/2008 = January 2008

01/02/2008 = February 2008

01/12/2008 = December 2008
Thanks

J
Jane 12/11/2008

Hi,
use custom format on the "View as" settingsdialog on the Visual Edtiortab for this purpose.

Here is just a sample:

$value = date("F Y",strtotime($value));