how many times this for loop should run
Posted: Wed Sep 09, 2009 6:17 am
Code: Select all
for($i=1;$i<=2;$i++){
if($i = 1){
echo "<br/>we are here for you";
}
}
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
for($i=1;$i<=2;$i++){
if($i = 1){
echo "<br/>we are here for you";
}
}
Code: Select all
if($i = 1){Code: Select all
if($i == 1){