WebServ/www/public/M1/04/handle.php

15 lines
310 B
PHP
Raw Permalink Normal View History

2024-08-23 13:24:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Result</title>
</head>
<body>
<?php
$name = $_GET['name'];
$age = $_GET['age'];
echo "<p>Name - $name; Age - $age</p>"
?>
</body>
</html>