使用HTML和PHP提交输入文本

时间:2015-04-04 21:02:26

标签: php html forms submit

我正在尝试使用HTML和PHP查看输入短信。

从我到目前为止所写的内容来看,我试图在运行PHP之后显示一个名称和电子邮件,但唯一显示的是:

Welcome 
Your email address is:

HTML:          

<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>

</body>
</html>

PHP:

<html>
<body>

Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: 
<?php echo $_POST["email"]; ?>



</body>
</html>

如何制作,以便我看到提交的输入?

0 个答案:

没有答案