如果状态为“1”,如何禁用按钮(1=确认)

7lrncoxx  于 2021-06-17  发布在  Mysql
关注(0)|答案(1)|浏览(287)
<?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>
osh3o9ms

osh3o9ms1#

因为您使用的是锚定标记,而不是按钮,所以不能使用 disabled 属性。但是你可以这样做

<a <?php if($row['Status'] == 1) echo "href='vehical-details.php?vhid=" . htmlentities($result->id) . "'"; ?> class="btn">Request this Vehicle <span class="angle_arrow"><i 
class="fa fa-angle-right" aria-hidden="true"></i></span></a>

这只会给标签 href 属性(如果状态为1)。没有 href 基本上和残疾是一样的。

相关问题