当用户在输入框中搜索时,重定向到不同的页面

时间:2016-03-12 10:29:00

标签: php html

我有一个输入框,可以在数据库中搜索输入的文本,并在输入框所在的页面上显示信息。

一旦用户在输入框中输入文字并点击提交,它是否有可能将其重定向到 page.php 并在page.php上显示结果?

$getUsers = mysql_query("SELECT * FROM Users");
$numUsers = mysql_num_rows($getUsers);
$Online = mysql_query("SELECT * FROM Users WHERE  $now < expireTime");
$Online = mysql_num_rows($Online);
echo"
<div class='members-browse-page'>
<div style='width: 876px; height: 28px; margin-bottom: 10px; clear: both;'>
<span class='form-label' style='margin-right: 30px;padding-top:5px;'>
<strong>Search:</strong>
</span>
<span>
<span class='search-bar'>
<form action='' method='POST' style='margin:0;padding:0;'>
<input type='text' name='UserSearchBar' maxlength='100' style='width:400px;'>
<input type='submit' name='UserSearchSubmit' value='Search Users'>
<a href='online.aspx'><b>Online (".$Online.")</b></a>
</form>
</span>
</span>
</div>

2 个答案:

答案 0 :(得分:1)

简单地对表单执行操作

<form action='yourpage.php' method='POST' style='margin:0;padding:0;'>

答案 1 :(得分:0)

<form action='page.php' method='POST' style='margin:0;padding:0;'>

只需在表单操作中编写page.php即可。您可以使用$ _POST方法在page.php上获取搜索框值。比如$_POST['UserSearchBar']。使用此帖子值或为其编写适当的代码并显示结果。