使用php和ajax选择器表单查询mysql

ia2d9nvy  于 2021-06-24  发布在  Mysql
关注(0)|答案(0)|浏览(183)

我正在编写一些php来查询我在wamp服务器上设置的mysql数据库。我也在学习php和htmljavascript,所以这两种语言的语法对我来说还是有点陌生。
我正在我的服务器上运行两个文件,front.php和back.php。front.php包含一个选择器表单,用户可以在其中选择要应用于mysql的php查询的过滤器。back.php接收带有$\请求的选择,并将其用于mysql的select查询中。我已经在下面的front.php中发布了与选择器表单相关的代码。
我在编译时收到一个“未定义索引:族”错误。另外,我还提供了front.php和back.php文件供参考。
我非常感谢你的帮助!

<form method="POST">
<select name="family" onchange="showUser (this.value)">
<option value="empty">Select a Family:</option>
<option value="capacitor">capacitor</option>
<option value="resistor">resistor</option>
<option value="ferrite bead">ferrite bead</option>
</select>
</form>

下面是在back.php中接收上述选项的$\u请求调用

$sql="SELECT * FROM testv2 WHERE family='".$_REQUEST['family']."'";
$result = mysqli_query($con,$sql);

前端.php

<!DOCTYPE html>
<html>
<head>
<script>
function showUser(str) {
  if (str=="") {
    document.getElementById("txtHint").innerHTML="";
    return;
  } 
  if (window.XMLHttpRequest) {
    // code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
  } else { // code for IE6, IE5
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
  xmlhttp.onreadystatechange=function() {            

    if (this.readyState==4 && this.status==200) {
      document.getElementById("txtHint").innerHTML=this.responseText;
    }
  }
  xmlhttp.open("GET","back.php?q="+str,true);
  xmlhttp.send();
}
</script>
</head>
<body>

<form>
<select name="family" onchange="showUser(this.value)">
    <option value="empty">Select a Family:</option>
    <option value="capacitor">capacitor</option>
    <option value="resistor">resistor</option>
    <option value="ferrite bead">ferrite bead</option>
</select>
</form>

<br>
<div id="txtHint"><b>Filter Info to be Displayed Here.</b></div>

</body>
</html>

后退.php

<!DOCTYPE html>
<html>
<head>
<style>
table {
    width: 100%;
    border-collapse: collapse;
}

table, td, th {
    border: 1px solid black;
    padding: 5px;
}

th {text-align: left;}
</style>
</head>
<body>

<?php

$con = mysqli_connect('localhost','root','kelly188','mysql');
mysqli_select_db($con,"testv2");
$sql="SELECT * FROM testv2 WHERE family='".$_REQUEST['family']."'";
$result = mysqli_query($con,$sql);
return var_dump($sql);

echo "<table>
<tr>
<th>ID</th>
<th>Family</th>
<th>Capacitance</th>
<th>Voltage</th>
<th>Price</th>
</tr>";

while($row = mysqli_fetch_array($result)) {
    echo "<tr>";
    echo "<td>" . $row['id'] . "</td>";
    echo "<td>" . $row['family'] . "</td>";
    echo "<td>" . $row['capacitance'] . "</td>";
    echo "<td>" . $row['voltage'] . "</td>";
    echo "<td>" . $row['price'] . "</td>";
    echo "</tr>";
}

echo "</table>";
mysqli_close($con);
?>

</body>
</html>



第一个图片显示了包含varïu dump返回的代码第二个图片是运行代码时在我的服务器窗口中编译的内容

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题