Webbserverprogrammering 1

Show sourcecode

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

Webserver1/Ovningar/Forms/

ovning_forms1.php
ovning_forms1_mot.php
ovning_forms2.php
ovning_forms2_mot.php
ovning_forms3-6.php
ovning_forms3_mot.php
ovning_forms7.php
ovning_forms7_mot.php
ovning_forms8.php

ovning_forms7_mot.php

21 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Får får inte forms</title>
</head>
<body>
  <?php 
    $num1 
$_GET["num1"];
    
$num2 $_GET["num2"];
    
$num3 $_GET["num3"];

    function 
medelvärde(&$n1, &$n2, &$n3) {
      return (
$n1 $n2 $n3) / 3;
    }

    echo 
medelvärde($num1$num2$num3);
  
?>
</body>
</html>