mirror of
https://github.com/Floriansylvain/projet_programmation_web.git
synced 2026-08-19 11:43:16 +02:00
14 lines
277 B
PHP
14 lines
277 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Google - resultat</title>
|
|
</head>
|
|
<body>
|
|
<h1>Resultats</h1>
|
|
<?php
|
|
$result = $_POST["search"];
|
|
echo "<p>${result}</p>";
|
|
?>
|
|
</body>
|
|
</html>
|