Hello World from PHP 500 times

Hello World from HTML!

To edit the PHP Hello World file, copy and paste this code into your HTML editor:

<html>
<head>
<title>Hello World in PHP</title>
</head>

<body>

<!-- THIS HELLO WORLD IS FROM HTML -->
<h1>This Hello World is from HTML</h1>

<!-- THESE HELLO WORLDS ARE FROM PHP -->
<h1>These Hello Worlds are from PHP </h1>
<?php

for ($i=0; $i<500; $i++)
{

?>
<p>Hello World #<?php echo $i; ?></p>
<?php
}

?>

</body>
</html>