RE: [PHP] Hmmmm....this is definately not expected....

2001-04-02 Thread Boget, Chris
> While trying to print A-Z... > This spews A-Z, then AA-YZ, then stops, most likely from a timeout. >for ($x = 'A'; $x <= 'Z'; $x++) > { > echo "$x\n"; > } > ?> This very issue was raised earlier today. Check out the thread: "Why does it work this way". Chris

[PHP] Hmmmm....this is definately not expected....

2001-04-02 Thread moxford
While trying to print A-Z... This spews A-Z, then AA-YZ, then stops, most likely from a timeout. This works as expected. Most likely the first one hits the execution time-limit, and that's why it finally stops. What I can't figure out is why it would do A-Z and then start over at AA since t