RE: [PHP-DB] month

2006-10-15 Thread Bastien Koert

use an array

$months = array('01'=>'January','02'=>'February'...);

$thisMonths = array_flip($months);
$month = $thisMonths['January'];

echo $month;

though its easier to just create the array the other way and the just 
reference it


$months = array(''January''=>'01','February'=>'02...');

$month = $months[January'];



Bastien


From: "Ron Piggott (PHP)" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: PHP DB 
Subject: [PHP-DB] month
Date: Sun, 15 Oct 2006 22:50:48 -0400

Is there a slick and easy way to convert January to 01 ? (and February
to 02, etc)  Ron


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] month

2006-10-15 Thread J R

search the archive.

On 10/16/06, Ron Piggott (PHP) <[EMAIL PROTECTED]> wrote:


I have completely missed it and need to try again.





--
GMail Rocks!!!


Re: [PHP-DB] month

2006-10-15 Thread Ron Piggott (PHP)
I have completely missed it and need to try again.  


Re: [PHP-DB] month

2006-10-15 Thread Chris

Ron Piggott (PHP) wrote:

Is there a slick and easy way to convert January to 01 ? (and February
to 02, etc)  Ron


You asked this on the general list and got a few responses.

--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] month

2006-10-15 Thread Ron Piggott (PHP)
Is there a slick and easy way to convert January to 01 ? (and February
to 02, etc)  Ron