我在 php 中有 2 页。第一页包含一个搜索表单。此表单的所有结果我想将它们保存到会话中。在第二页中,我想要一个链接,以便如果在搜索表单中有人键入内容,请单击第二页中的链接来执行它。这是我到目前为止所做的:
第 1 页
<form method="POST" name="go" action="search_form_all.php" >
<input name="value" type="text" id="search_form_1" size="65" autocomplete="off" placeholder=" Search People ..." style="" />
<input type="submit" value="" name="submit" style="background:url('img/arrow.png') no-repeat; width:23px; height:23px; cursor:pointer; border:none; "/>
</form>
<?php
// starting the session
session_start();
if (isset($_POST['Submit'])) {
$_SESSION['value'] = $_POST['value'];
}
?>
第二页
<?php
echo"<a href='search_form_all.php'>click to view results";
?>