$counter = 1;
while ( $counter <= 10 ) {
echo "Hello world";
$counter = $counter + 1;
}
Thursday, July 17, 2008
PHP - WHILE LOOP
Posted by
ashok
at
4:11 PM
Labels: PHP - Loops
Subscribe to:
Post Comments (Atom)
$counter = 1;
while ( $counter <= 10 ) {
echo "Hello world";
$counter = $counter + 1;
}
Posted by
ashok
at
4:11 PM
Labels: PHP - Loops
0 comments:
Post a Comment