Test

From Robin's SM-201 Website
Jump to navigation Jump to search

<?php $message = "Programming is fun!"; // Message to output $count = 3; // The number of times to display the message for (___; $i <= $count; ___) {

   echo $message . "\n"; // The newline symbol `\n` moves the text to the next line, like pressing Enter.

} ?>