Here is an elementary for loop:
for ($i=0; $i<60; $i++)
{
$list .= "i: $i<BR>';
}
a var_dump on $list returns a string of 'i: 60'
OK, why is $i starting AT 60!! It loops through only once with a value of 60 when I have $i<60. This is not the first time this has happened. However I have not been able to find the problem... Is this a bug? This for loop is not inside another loop of any sort, and I have tried changing the variable name...
Just wondering if anyone has experienced simlar problems...