php-install | 2004091
Date: 09/15/04
- Next message: Martinsc: "[PHP-INSTALL] Re:"
- Previous message: Vincent: "[PHP-INSTALL] Re:"
- In reply to: guestapo <email protected>: "[PHP-INSTALL] apache and FOR"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
guestapo <email protected> schrieb:
>after installing php 5.0.5 to apache server 2.0.x everything seemed to work fine. Except for one detail: No script can execute the bronchus FOR
>(example: for($i=0; $i>=6; $i++){echo "test";}
>i tried to install it into apache 1.3.X and the same thing happend. Can anyone help?
>
>
>
The for loop will not execute since "0>=6" is obviously false.
You should try
for($i=0; $i<6; $i++){echo "test<br>";}
Hendrik
- Next message: Martinsc: "[PHP-INSTALL] Re:"
- Previous message: Vincent: "[PHP-INSTALL] Re:"
- In reply to: guestapo <email protected>: "[PHP-INSTALL] apache and FOR"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

