View sourcecode

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

mottagarsida.php

17 lines ASCII Unix (LF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mottagarsida</title>
    <link rel="stylesheet" href="bulma.css">
</head>
<body class="m-3">
        <?php
        
foreach($_POST as $x => $y){
            echo 
"$x : $y <br>";
        }
        
?>
        </pre>
</body>
</html>