View sourcecode

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

m03u01output.php

18 lines UTF-8 Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="sv">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>m03u01 resultat</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
</head>
<body>
    <?php
    
echo "<p>Namn: ".$_POST['name']." ".$_POST['surname']."</p>";
    echo 
"<p>Födelsedag: ".$_POST['birthday']."</p>";
    echo 
"<p>Lösenord: ".$_POST['password']."</p>";
    echo 
"<p>Kön: ".$_POST['gender']."</p>";
    
?>
</body>
</html>