This topic is locked

Displaying a field that holds a date in a different format

12/14/2011 11:05:49 AM
PHPRunner General questions
M
mrl40 author

Hi
I have a report of activities that happen daily during the week

e.g.
3/12/2011

football

rugby
4/12/2011

judo

soccer
etc
I want to be able to display 3/12/2011 as Sat and 4/12/2011 as Sun etc either within the same field or in a nearby field.
Thanks

Mike

C
cgphp 12/14/2011

Set the field as Custom and enter this code:

$value = date("D",strtotime($value));
M
mrl40 author 12/14/2011



Set the field as Custom and enter this code:

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



Thanks for the prompt response

That worked!!
Mike