or if you want to us 12hour clock try this:
$todaydatetime = date("Y m d g:i");
That will translate into:
2002 11 07 6:12
[snip]
It is ok, but is there some way i do $mydate=format_date($date,Y m d
:i") - is there some function that could do it, where $date is some date,
not neccessarily tod
l Message-
From: Adrian Partenie [mailto:adrian.partenie@;artelecom.net]
Sent: 07 November 2002 16:06
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] date format, php, mysql
Hello,
How can I modify a date format from $b="Jan 7 1999, 3:51 pm" into other
format? like
1999 01 07 3:51 for example?
look at the function called strtotime()
uk.php.net/strtotime
it will convert English language date into timestamp, from which you can
do date() again to reformat it
--
Maxim Maletsky
[EMAIL PROTECTED]
"Adrian Partenie" <[EMAIL PROTECTED]> wrote... :
> Hello,
>
> How can I modify a date fo
Hello,
How can I modify a date format from $b="Jan 7 1999, 3:51 pm" into other format? like
1999 01 07 3:51 for example? I have tried with strftime, but it change format only for
current date.
Thanks, Adrian