Re: [PHP] Function Date

2004-06-14 Thread Juan Pablo Herrera
Yes! That's right! Thank you Juan > Hello Juan, > > Monday, June 14, 2004, 6:04:56 PM, you wrote: > > JPH> I am using date("j M Y"), the format date is 14 Jun 2004, but i > need this JPH> format 14 JUN 2004. The unique difference is Jun -> JUN. > How can i change JPH> this?. > > $date = strtouppe

Re: [PHP] Function Date

2004-06-14 Thread Richard Davey
Hello Juan, Monday, June 14, 2004, 6:04:56 PM, you wrote: JPH> I am using date("j M Y"), the format date is 14 Jun 2004, but i need this JPH> format 14 JUN 2004. The unique difference is Jun -> JUN. How can i change JPH> this?. $date = strtoupper(date('j M Y')); :) Best regards, Richard Davey

Re: [PHP] Function Date

2004-06-14 Thread Daniel Clark
How about. strtoupper( date("j M Y")) > I am using date("j M Y"), the format date is 14 Jun 2004, but i need this > format 14 JUN 2004. The unique difference is Jun -> JUN. How can i change > this?. > Thank You, > Juan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] Function Date

2004-06-14 Thread Dennis Freise
On Mon, 14 Jun 2004 14:04:56 -0300 (ART) "Juan Pablo Herrera" <[EMAIL PROTECTED]> wrote: > I am using date("j M Y"), the format date is 14 Jun 2004, but i need this > format 14 JUN 2004. The unique difference is Jun -> JUN. How can i change > this?. How about strtoupper( date("j M Y") ); ? -- D

RE: [PHP] Function Date

2004-06-14 Thread Sam Masiello
Use the strtoupper function: http://www.php.net/strtoupper HTH! --Sam -Original Message- From: Juan Pablo Herrera [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 11:05 AM To: [EMAIL PROTECTED] Subject: [PHP] Function Date Hi! I am using date("j M Y"), the format

[PHP] Function Date

2004-06-14 Thread Juan Pablo Herrera
Hi! I am using date("j M Y"), the format date is 14 Jun 2004, but i need this format 14 JUN 2004. The unique difference is Jun -> JUN. How can i change this?. Thank You, Juan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php