如何从php获取值并将其加载到同一页面中

时间:2013-08-31 11:41:05

标签: php javascript html5 jquery actionform

我想从PHP文件中的表单发送一些值,使用ajax函数我想在同一页面的div中显示值。

2 个答案:

答案 0 :(得分:1)

page1.php中

<html>
<body>

<form name="myform" method="post" action="page2.php">
<table>
<tr>
<td>First Name :</td>
<td><input type="text" id="fname" name="fname"></td>
</tr>
<tr>
<td>&nbsp</td>
<td><input type="submit" id="submit" name="submit" value="save"></td>
</tr>

</table>
</form>
</body>
</html>

使page2.php

<html>
<body>
<div><?php echo $_POST['fname']; ?> </div>
</body>
</html>

我希望它能帮到你

答案 1 :(得分:0)

在您的HTML页面中,您可以使用Javascript来读取从表单发送的参数。为此,请查看How can I get query string values in JavaScript?

这些参数需要作为GET参数发送。