This topic is locked

Date Format

12/9/2008 11:47:28 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

01/02/2008 = February

01/12/2008 = December.
Thanks

J
Jane 12/11/2008

Hi,
use custom format on the "View as" settings dialog on theVisual Edtior tab for this purpose.

Here is just a sample:

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