我有两个 php 页面 index.php 和 page2.php。
我希望当我的网站第一次加载时它会显示 index.php,其中有一个搜索按钮。单击提交按钮时,我想显示 page2.php 的全部内容(现在我只在 page2.php 上显示)通过消除对 page2.php 的需要,在 index.php 上。
问问题
2234 次
2 回答
1
更改您的表单,使其重新加载同一页面:
<form method="post">
// inputs go here
<input type="submit" value="Submit" name="submit" />
</form>
然后包含一个 if 语句来检查表单是否已经提交:
if (isset($_POST["submit"])){ // form already submitted
// echo page2.php code here or simply include the code from an external file
}
else {
// echo the form code above and anything else from the first page here
}
于 2012-08-14T14:27:08.520 回答
0
从 page2.php 复制脚本并将其粘贴到 index.php 中?在这个闭包中:
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
//
}
?>
于 2012-08-14T14:25:31.127 回答