The following files exists in this folder. Click to view.
output.php17 lines ASCII Unix (LF)
<!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>