我有一个下拉列表,其中包含待批准的选项。两者都有单独的PHP文件进行排序,所以我想问一下当我选择挂起时,是否有一种方式,我从pendinglist.php
完成的查询将显示在页面中?与approvedlist.php
相同。如果有办法,有人可以告诉我怎么样和什么?我应该使用js吗?请帮忙..
approvedlist.php
<?php
include 'dbcontroller.php';
$sql = "SELECT * FROM requests where status='approved' ORDER by date DESC";
$result = $conn->query($sql);
?>
<table>
<thead>
<tr>
<th>Name</th>
<th>Batch Year</th>
<th>Section</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo '<tr>';
echo '<td>'.$row['firstname'].' '.$row['lastname'].' </td>';
echo '<td>'.$row['batchYr'].'</td>';
echo '<td>'.$row['section'].'</td>';
}
}
else {
echo "No records found.";
}
$conn->close();
?>
</tbody>
</table>
我的pendinglist.php中有相同的代码,但查询除外:
$sql = "SELECT * FROM requests where status='pending' ORDER by date DESC";
答案 0 :(得分:2)
在变量中获取所选选项并使用webservice.it传递它是如此简单如果你发送我将发布js代码
答案 1 :(得分:1)
您可以在页面中包含两个php文件。通过使用类或ID包装它们,确保它们位于唯一选择器中。 你需要做的所有javascript都是根据下拉列表中的值隐藏不需要的DOM