• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Want to Write a World 50 times in PHP??

PHP:
<?php
for ($i = 0; $i < 50; $i++) {
    echo "a world";
}
?>

Though I get the impression this isn't actually what you want.
 
i prefer this, but, essentially the same...

PHP:
<?php
for ($i = 1; $i <= 50; $i++) {
    echo "{$i}: a world<br/>";
}
?>
 
Back
Top