Webbserverprogrammering 1

Show sourcecode

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

webbserverprogrammering/exercises/funktioner/

ovning_1.php
ovning_2.php
ovning_3.php
ovning_4.php
ovning_5.php
ovning_6.php

ovning_2.php

22 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Övning 2</title>
</head>
<body>
  <?php
    $antal 
5;
    
    function 
greeting($x){
      echo 
"<p>Funktionen repeteras $x gånger</p>";
      for(
$i 0$i $x$i++){
        echo 
"<p>Hejsvejs</p>";
      }
    }

    
greeting($antal);
  
?>
</body>
</html>