- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.php
More file actions
Latest commit
20 lines (19 loc) · 447 Bytes
/
Copy pathhello.php
File metadata and controls
20 lines (19 loc) · 447 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Input Form</title>
</head>
<body>
<h2>Enter your name:</h2>
<form method="post" action="<?phpecho$_SERVER['PHP_SELF']; ?>">
<input type="text" name="name">
<input type="submit" name="submit" value="Submit">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_POST['name'];
echo"<h3>Welcome, $name!</h3>";
}
?>
</body>
</html>