<?php
$vehiclestatus = $row['Status'];
if ($vehiclestatus == '1'){
echo "<h1>reserved</h1>";
}
?>
//状态属于 tblbooking
数据库
//下面是我想禁用的按钮
<a href="vehical-details.php?vhid=
<?php echo htmlentities($result->id);? >"
class="btn">Request this Vehicle <span class="angle_arrow">
<i class="fa fa-angle-right" aria-hidden="true"></i></span>
</a>
1条答案
按热度按时间osh3o9ms1#
因为您使用的是锚定标记,而不是按钮,所以不能使用
disabled
属性。但是你可以这样做这只会给标签
href
属性(如果状态为1)。没有href
基本上和残疾是一样的。