|
Posted by comp.lang.php on 09/01/06 20:16
C ould someone please explain this one? This one got me:
PHP Code:
for ($thisMonth = (int)$minMonth; $thisMonth <= 12; $thisMonth++) {
$monthName = date('M', strtotime($thisMonth));
print_r("thisMonth = $thisMonth and monthName = $monthName<P>");
}
Quote:
thisMonth = 7 and monthName = Sep
thisMonth = 8 and monthName = Sep
thisMonth = 9 and monthName = Sep
thisMonth = 10 and monthName = Sep
thisMonth = 11 and monthName = Sep
thisMonth = 12 and monthName = Sep
I am at a loss, please help, time sensitive I'm afraid, must be done in
an hour (it's 4pm EST now)
Thanx
Phil
Navigation:
[Reply to this message]
|