Thursday, July 17, 2008

PHP - WHILE LOOP

$counter = 1;
while ( $counter <= 10 ) {
echo "Hello world";
$counter = $counter + 1;
}

No comments: