Test

From Robin's SM-201 Website
Revision as of 00:45, 26 July 2024 by Robinr78 (talk | contribs) (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. } ?>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.

} ?>