我创建了 3 个 php 页面。第一种包括以下形式:
<form method="POST" name="go" action="search_form_all.php" >
<input name="value" type="text" id="search_form_1" size="65" placeholder="enter name"/>
<input type="submit" value="" name="submit" />
</form>
名为“search_form_all.php”的第二个页面包含显示上述表单结果的 php 代码。因此,如果用户在表单中输入名称并按下提交,“search_form_all.php”会根据用户在搜索表单中插入的内容显示我数据库中的所有名称。
我想要的只是在我的第三个 php 页面中有一个链接,当用户按下它来执行第一页中的表单时。例如,如果我在搜索表单中输入一个姓名,如“john”,那么我希望能够转到我的第三页并按下链接,即要执行的表单并从我的数据库中返回所有姓名“john”。这可能吗?