Every programming language has a number of methods for creating loops, and PHP is no exception. Try this program, for example, either by uploading it the server and seeing what happens, or just by reading the code and trying to work it out:<?phpecho "<HTML>";echo "<body>";echo "A web server that knows its 7 times table!<br><br>";for ($x = 1; $x <= 10; $x++){echo $x . " times 7 is " . $x * 7 . "<br>";}echo "</body>";echo "</HTML>";?>Run the program, and you'll see the following in your web browser:
One line of PHP that you'll not have seen before is:for ($x = 1; $x <= 10; $x++)This is...