Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/ovning5/

index.html
ovn_str1.php
ovn_str2.php
ovn_str3.php
ovn_str4.php
ovn_str5.php
ovn_str6.php
svar.php
svar2.php
svar3.php
svar4.php
svar5.php

svar3.php

18 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
        $tal1 
$_POST["number1"];
        
$tal2 $_POST["number2"];
        echo 
$tal1" / ".  $tal2" = ";
        
$division round($tal1/$tal22);
        echo 
$division;

    
?>
</body>
</html>