Show sourcecode
The following files exists in this folder. Click to view.
webbsrvprg/exercises/formulär/
ovn_form1.php
ovn_form2.php
ovn_form3.php
ovn_form4.php
ovn_form5.php
ovn_form6.php
ovn_form7.php
ovn_form7res.php
ovn_form8.php
ovn_form7res.php
19 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulär 7</title>
</head>
<body>
<?php
function medelVärde($tal1, $tal2, $tal3) {
return ($tal1 + $tal2 + $tal3)/3;
}
echo medelVärde($_POST["tal1"], $_POST["tal2"], $_POST["tal3"]);
?>
</body>
</html>