Test: Difference between revisions

From Robin's SM-201 Website
Jump to navigation Jump to search
(Created page with "<?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. } ?>")
 
(No difference)

Latest revision as of 00:45, 26 July 2024

<?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.

} ?>