Thursday, July 17, 2008

PHP - FOR LOOP

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

No comments: