I'm trying to learn php, but by reading books the code always as errors
for example i'm trying to put this code:
<?
$months = array ("January", "February", "March", "May", "June", "July", "August", "September", "October", "November", "December");
for ($month_number=0; $i<count($months); $i++)
{
echo $months[$month_number] . "<br>\n" ;
}
?>
and it only display january, I think it shoul display all months and count it.
thanks