From:             [EMAIL PROTECTED]
Operating system: Windows NT 4
PHP version:      4.1.1
PHP Bug Type:     Feature/Change Request
Bug description:  for loops do not work properly (is it a feature or a bug?)

for ($i=1; $i==20; $i++) {
  echo($i);
}

does not work, while

for ($i=1; $i>=20; $i++) {
  echo($i);
}

works fine. of course, if the first statement would work it wourld be
redundant, so my questions is: is it a feature or a bug?
-- 
Edit bug report at: http://bugs.php.net/?id=15064&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to