Không cần sử dụng đầu vào ẩn, bạn chỉ có thể sử dụng nút button
thay vào đó là thẻ:
<?php while($row = mysqli_fetch_array($result)) { ?>
<tr>
<td align="center"><?php echo $row['dept_ID']; ?></td>
<td align="center"><?php echo $row['dept_name']; ?></td>
<td>
<button type="submit" name="departmentID" class="buttonsPromptConfirmDeleteDepartment" value="<?php echo $row['dept_ID']; ?>">Delete</button>
</td>
</tr>
<?php } ?>
Tất nhiên, trong tập lệnh PHP xử lý biểu mẫu, hãy truy cập chỉ mục POST như bạn thường làm:
$id = $_POST['departmentID'];
// some processes next to it
Lưu ý:Đừng quên <form>
thẻ.
Lưu ý bổ sung:Đừng quên sử dụng câu lệnh đã chuẩn bị sẵn :
$sql = 'DELETE FROM department WHERE dept_ID = ?';
$stmt = $dbc->prepare($sql);
$stmt->bind_param('i', $id);
$stmt->execute();
// some idea, use error checking when necessary
// $dbc->error