Show sourcecode
The following files exists in this folder. Click to view.
ovn_gr.php
ovn_gr1.php
ovn_gr2.php
ovn_gr3.php
ovn_gr4.php
ovn_gr5.php
ovn_gr6.php
ovn_gr3.php
25 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>
<?php
$sum = 0;
for ($i = 1; $i < 101; $i++) {
$sum += $i;
}
echo "<p>$sum</p>";
$sum = 0;
$i = 0;
while ($i < 100) {
$i++;
$sum += $i;
}
echo "<p>$sum</p>";
?>
</body>
</html>