我已经编写了一些PHP和CSS来查询我在WAMP服务器上运行的MySQL数据库表。我有两个运行的文件,index.php和test.php。索引包含一个选择器框,允许用户从“家庭”中选择过滤器选项。最终,我希望将选定的选项实现到SELECT查询中,该查询确定test.php的PHP部分中的数据输出。
例如,如果用户从index.php中选择“ capacitor”,则我需要创建该表以仅显示与“ capacitor”相匹配的系列条目(以及所有相应的详细信息,例如“ capacitance”, “电压”和“价格”)。目前,我的PHP仅获取整个表(如下面的图片所示)。
我知道我需要使用$ _POST超全局变量来获取用户输入并将其放入SELECT查询,但是我不确定如何。
编辑:当我尝试使用WHERE修饰符来缩小返回的数据时,会出现以下错误
错误:SQLSTATE [42S22]:找不到列:1054'where子句'中的未知列'capacitor'
下面是index.php
<form action="test.php" method="post">
<select name="family">
<option value="" selected="selected">Any family</option>
<option value="capacitor">capacitor</option>
<option value="resistor">resistor</option>
<option value="ferrite bead">ferrite bead</option>
</select>
<input name="search" type="submit" value="Search"/>
</form>
</html>
下面是test.php
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<title>test.php</title>
<style>
table {
border-collapse: collapse;
width: 50%;
}
th, td {
text-align: left;
padding: 8px;
}
th {
background-color: SkyBlue;
}
tr:nth-child(odd) {background-color: #f2f2f2;}
tr:hover {background-color: AliceBlue;}
</style>
</head>
<body>
<p>
<?php
try {
$con= new PDO('mysql:host=localhost;dbname=mysql', "root", "kelly188");
$con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$query = "SELECT * FROM testv2";
//first query just gets the column names
print "<table>";
$result = $con->query($query);
//return only the first row (we only need field names)
$row = $result->fetch(PDO::FETCH_ASSOC);
print " <tr>";
foreach ($row as $field => $value){
print " <th>$field</th>";
}
// end loop
print " </tr>";
//second query gets the data
$data = $con->query(**PERTAINS TO EDIT**);
$data->setFetchMode(PDO::FETCH_ASSOC);
foreach($data as $row){
print " <tr>";
foreach ($row as $name=>$value){
print " <td>$value</td>";
} //end row loop
print " </tr>";
} //end record loop
print "</table>";
} catch(PDOException $e) {
echo 'ERROR: ' . $e->getMessage();
} // end try
?>
</p>
</body>
</html>
答案 0 :(得分:2)
您必须捕获所要求的家庭:
$filter_key = "";
if(isset($_POST['family'])){
$filter_key = $_POST['family'];
}
他们必须使用设置的过滤条件来符合您的查询条件
if(!empty($filter_key))
$query = 'SELECT * FROM testv2 WHERE family = "'.$filter_key.'"';
else
$query = 'SELECT * FROM testv2';
答案 1 :(得分:0)
您可以创建第二个查询,以选择要循环查询的族的记录,例如
$data= $con->quaery('SELECT * from testv2 where family = $field');