Posted by Peter van Schie on 11/04/05 15:00
Jonathan Crawford wrote:
> I am niew to pho and am having trouble with dates.
>
> I can format a date ok
> so $today=date('d M Y' )
> gives me 2 Nov 2005
>
>
> $dateval is a mysql date
> yyyy-mm-dd hh:nn:sss (2005-10-26 13:32:09)
> $today=date('d M Y' ,$dateval)
> gives me something like 1 july 1970
Hi Jonathan,
Try:
$today=date('d M Y', strtotime($dateval));
HTH.
Peter.
--
http://www.phpforums.nl
Navigation:
[Reply to this message]
|