我试图学习PHP和HTML,但我已经陷入困境。
我有一个PHP PDO SQL查询
$stmt = $conn->prepare("SELECT COUNT FROM tbl WHERE Staff ID='$staff_id';");
$stmt->execute();`
我想将此添加到包含表单提交的表格单元格中,如下所示:
<td>
<form action='staff_view_by_id.php?name="<?php echo $row['staff_id']; ?>"' method="post">
<input type="hidden" name="staff_id" value="<?php echo $row['staff_id'] ?>">
<input type="submit" id="staff_list_submit" name="submit" value="View">
</form>
如果SQL Count的结果为零,我希望有一些会导致View按钮被禁用的东西。
有办法做到这一点吗?我猜这将是某种if语句,但到目前为止,我无法使其发挥作用。
由于
答案 0 :(得分:0)
您可以执行类似
的操作<input type="submit" id="staff_list_submit" name="submit" value="View" disabled="<?php if($result === 0){echo true;} else {echo false;} ?>">