我正在尝试在我已经完成的每一行上添加一个按钮。当我单击更新更新数据库上的某个字段时,它不起作用。单击该按钮时,它将重定向到approve.php文件。
<?php
$con=mysqli_connect("localhost","root","","rabco");// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result = mysqli_query($con,"SELECT * FROM service_request");
echo "<table border='1'>
<tr>
<th>Service ID</th>
<th>Service Type</th>
<th>Schuduled Date</th>
<th>Scheduled Time</th>
<th>Client Reference
<th>Client ID</th>
<th>Admin ID</th>
<th>Special Instructions</th>
<th>Status</th>
<th>Approve</th>
<th>Decline</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Service_ID'] . "</td>";
echo "<td>" . $row['Service_type'] . "</td>";
echo "<td>" . $row['Sched_date'] . "</td>";
echo "<td>" . $row['Sched_time'] . "</td>";
echo "<td>" . $row['Client_reference'] . "</td>";
echo "<td>" . $row['Client_IDN'] . "</td>";
echo "<td>" . $row['Admin_IDN'] . "</td>";
echo "<td>" . $row['Special_instructions'] . "</td>";
echo "<td>" . $row['Request_status'] . "</td>";
echo "<td><form action='approve.php' method='POST'> <input type='hidden' name='accept' value='".$row["Service_ID"]."'/><input type='submit' name='submit' value='Approve'/></form></td>";
echo "<td><form action='decline.php' method='POST'><input type='hidden' name='decline' value='".$row["Service_ID"]."'/><input type='submit' name='submit' value='Decline'/></form></td>";
}
echo "</tr>";
echo "</table>";
mysqli_close($con);
?>
approve.php
<?php
$link = mysqli_connect("localhost", "root", "", "rabco");
if(isset($_GET["Service_ID"]))
{
$row_sr=$_GET["Service_ID"];
$sql="UPDATE service_request SET Request_status = 'Approved', Admin_IDN = '$_SESSION[Admin_ID]', Paid = 'Php 17,500', Balance = 'Php 32,500', Total_price = 'Php 50,000' WHERE Service_ID = '$row_sr'";
$result=mysqli_query($sql);
mysqli_query($link,$result);
if($result==1)
{
header('location: adminpage-sr.php');
}
}
?>
答案 0 :(得分:0)
您在主文件上使用方法POST但在批准php时使用$ _GET ??
根据您的approve.php文件,您可以将按钮更改为:
"<td><a href='approve.php?Service_ID='.$row["Service_ID"].">Approve</a></td>"