我使用的动态网站构建了不同的php包含。我有一个特定的文本框,允许用户键入任何名称并将其提交到下一页。
<form action="pages/searchResult.php" method="get">
<div style="text-align: center"><input type="text" placeholder="Enter first or last name" name="name" class="textbox"/></div>
<div style="text-align: center"><a href="main index.php?page=searchResult"><input type="Submit" value="Search" class="css_button"/></a></div>
</form>
我使用表单的事实已经让searchResult页面覆盖了所有内容。我只是希望它被加载到一个特定的div中,以便它不会弄乱 header.php 和 footer.php 设置。我希望它不能取代一切。
-------------------------------------------------------------------------------------------
**include ('header.php');**
-------------------------------------------------------------------------------------------
**include ('content.php');** [switch case]*(Where I want the searchResult.php to be loaded)*
-------------------------------------------------------------------------------------------
**include ('footer.php');**
-------------------------------------------------------------------------------------------