View sourcecode

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

output.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>Document</title>
    <link rel="stylesheet" href="bulma.css">
</head>
<body>
    <?php
    
foreach($_POST as $x => $y){
        echo 
"$x : $y <br>";
    }
    
?>

</body>
</html>