5

我创建了一个包含一个文本字段和一个选择框的表单,我还创建了一个按钮。现在我想要发生的是当按下按钮时,我希望表单中的字符串与我的数据库匹配,然后我希望返回这些匹配的结果并显示在屏幕上。

例如,如果我要在我的文本字段框中输入“历史”,并且当按下按钮(提交按钮)时,我还从选择框中选择了“级别 2”,我希望在页面上返回与单词匹配的所有内容历史和我数据库中第 2 级的选择。

我知道我必须通过 PHP 将我的页面与我的数据库连接起来,并且我已经成功地做到了,但我不明白的是如何让我的 HTML 表单查询数据库并将结果返回到屏幕上

就与我想创建的概念非常相似的示例网站而言,请查看此网页。http://search.ucas.com/cgi-bin/hsrun/search/search/search.hjx;start=search.HsSearch.run?y=2013&w=H (UCAS Course Search) 这个网站有多个文本字段并选择框和提交按钮与我尝试创建的完全一样,并且提供的结果只是与搜索结果匹配的结果。

下面的代码将我的文本字段链接到我的数据库,但我无法让我的文本字段和我的选择框链接和查询数据库,只有一个或另一个。我希望他们都使用同一个按钮(搜索按钮)

<form  method="post" action="Webpage here"  id="searchform">
  <input  type="text" name="name">
  <input  type="submit" name="submit" value="Search">
</form>
<form id="form1" name="ExamBoard" method="post" action="Webpage here">
  <label for="select"></label>
  <select name="ExamBoard" id="select">
    <option value="EB1" selected="selected">EB1</option>
    <option value="EB2">EB2</option>
    <option value="EB3">EB3</option>
  </select>
  <input  type="submit" name="submit" value="Search">
</form>
<p>&nbsp;</p>
<p>
<?php
 if(isset($_POST['submit'])){
 if(isset($_GET['go'])){
 if(preg_match("/^[  a-zA-Z]+/", $_POST['name'])){
 $name=$_POST['name'];
  //connect  to the database
 $db=mysql_connect  ("Name", "User",  "Password*") or die ('I cannot connect to the      database  because: ' . mysql_error());
 //-select  the database to use
 $mydb=mysql_select_db("Table Name");
  //-query  the database table
  $sql="SELECT  ID, CourseName, ExamBoard FROM subjects WHERE CourseName LIKE '%" . $name .  "%' ";
   //-run  the query against the mysql query function
   $result=mysql_query($sql);
    //-create  while loop and loop through result set
    while($row=mysql_fetch_array($result)){
      $CourseName  =$row['CourseName'];
      $ID=$row['ID'];
      $ExamBoard=$row['ExamBoard'];
  //-display the result of the array
  echo "<ul>\n";
  echo "<li>" . "<a  href=\"search.php?id=$ID\">"   .$CourseName . " " .  "</a></li>\n" ;
  echo  $ExamBoard . " " .  "</a>\n";
  echo "</ul>";
  }
  }
  }
  }
  ?>
4

2 回答 2

1

New HTML File

newHTML.htm

<form  method="post" action="Webpage here"  id="searchform">
  <input  type="text" name="name">
  <input  type="submit" name="submit" value="Search">
</form

New PHP file

newPHP.pfp

<?php
 if(preg_match("/^[  a-zA-Z]+/", $_REQUEST['name'])){
 $name=$_REQUEST['name'];
  //connect  to the database
 $db=mysql_connect  ("Name", "User",  "Password*") or die ('I cannot connect to the      database  because: ' . mysql_error());
 //-select  the database to use
 $mydb=mysql_select_db("Table Name");
  //-query  the database table
  $sql="SELECT  ID, CourseName, ExamBoard FROM subjects WHERE CourseName LIKE '%" . $name .  "%' ";
   //-run  the query against the mysql query function
   $result=mysql_query($sql);
    //-create  while loop and loop through result set
    while($row=mysql_fetch_array($result)){
      $CourseName  =$row['CourseName'];
      $ID=$row['ID'];
      $ExamBoard=$row['ExamBoard'];
  //-display the result of the array
  echo "<ul>\n";
  echo "<li>" . "<a  href=\"search.php?id=$ID\">"   .$CourseName . " " .  "</a></li>\n" ;
  echo  $ExamBoard . " " .  "</a>\n";
  echo "</ul>";
}
?>
于 2013-01-26T13:28:41.830 回答
0

你必须问自己你想用 AJAX 还是正常的屏幕刷新来做这个。

正常屏幕刷新(最简单的方法)

将您的 HTML 放入一个文件 (HTMLfile.html) 将您的 PHP 放入另一个文件 (PHPCode.php)

HTML 文件表单从 action 属性调用 PHP 脚本。

PHP 文件呈现响应。

不要混搭视图和控制应用程序。

如果您想使用 AJAX,还有其他方法可以在一个脚本中执行此操作。

于 2013-01-26T12:40:16.503 回答