Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/exercises/grunder/

ovn_gr1.php
ovn_gr2.php
ovn_gr3.php
ovn_gr4.php
ovn_gr5.php
ovn_gr6.php
ovn_gr7.php

ovn_gr3.php

26 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
</head>
<body>
 <?php
 $total1 
0;
 
$total2 0;
 for (
$i 0$i <= 100$i++) {
  
$total1 += $i;
 };

 
$i 0;
 while (
$i <= 100) {
  
$total2 += $i;
  
$i++;
 };

 echo 
$total1 "<br>";
 echo 
$total2;
 
?>
</body>
</html>