15 lines
301 B
PHP
15 lines
301 B
PHP
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<form action="index.php" method="post">
|
||
|
Name: <input type="text" name="name"><br>
|
||
|
E-mail: <input type="text" name="email"><br>
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
|
||
|
Welcome <?php echo $_POST["name"]; ?><br>
|
||
|
Your email address is: <?php echo $_POST["email"]; ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|