This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/lernen/zusammenfassung_ka1/sontstiges.php
2024-11-12 22:47:12 +01:00

24 lines
421 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="PHP_Datei.php">
<input type="text" name="input_name" id="name">
<button type="submit">Submit</button>
</form>
<?php
$name = $_REQUEST['input_name'];
?>
</body>
</html>