我需要简单的html / php代码帮助

时间:2014-09-09 08:57:03

标签: php localhost wamp

我想在HTML表单中添加两个文本框和一个“提交”按钮,并邀请用户输入名字和姓氏。单击该按钮时,我想使用php代码在文本框中显示名字和姓氏。

注意:html和php在同一个文件中名为exercise1.php。

2 个答案:

答案 0 :(得分:2)

等待一些输入验证并检查......

<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
    echo 'Your name is: ' . $_POST['fname'] . ' ' . $_POST['lname'];
}
?>
<form method="post">
    <label for="fname">First name</label>
    <input type="text" name="fname" />

    <label for="lname">Last name</label>
    <input type="text" name="lname" />

    <input type="submit" value="Submit" />
</form>

答案 1 :(得分:0)

index.html以下代码:

<html>
<form action="recive.php" method="post" >
<input type="text" name="firstname" >
<input type="submit" value="send !" >
</form>
</html>

在同一目录中的recive.php写下面的代码:

<?php

echo $_POST['firstname'];

?>

这是最简单的,你可以使用ajax