Hi, > Is there any way I could loop thru and print all the month names (i.e. > January, February)?
I suppose you could do something like:
for ($i = 1; $1 >= 12; $i++) {
echo date("F", mktime(0, 0, 0, $i, 1, 2003)) . "<br>";
}
Unless you just want to manually create an array with the month's names in
it.
-Dan Joseph
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

