<!DOCTYPE html>
<html>
<body>
​
<?php
for($f=1;$f<=100;$f++) { 
echo $f; echo "<br>"; 
}

?> 
​
</body>
</html>
​