如何将值从一个PHP传递到另一个而不覆盖整个页面?

时间:2014-04-12 12:53:37

标签: javascript php jquery css

我使用的动态网站构建了不同的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');**

-------------------------------------------------------------------------------------------

1 个答案:

答案 0 :(得分:0)

你可以使用“ajax”来实现。搜索“ajax”并且它很容易使用。这里是你的参考链接。Ajax Demo