Hi guys.
I am trying to format the date returned from a query. I think i am overlooking something simple.
in the db i have a table:admin
username, uservisit etc...
uservisit is a date() colum
This returns year/m/d as 2005/02/26
This is fine
But i want to display the lettering instead on the numeric
So it would be something like "Saturday 26 Febuary 2005"
How do i format the date returned?
i did try
$lastVisit= date($userDetails["admVisit, '$d %D %M %Y'"]);
It just returns empty.
Thanks
Paul