- 已关闭**。此问题需要超过focused。当前不接受答案。
- 想要改进此问题吗?**更新此问题,使其仅关注editing this post的一个问题。
昨天关门了。
此帖子已于昨天编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
Improve this question
如何禁用商店的"输入报告"和"导出"按钮。如果商店正常运行,销售主管将输入数据或查看报告(按钮将启用)。此选择将根据已插入数据库的商店的状态("运行"或"关闭")进行。
下面是我的代码:
<table id="table-data2" class="table table-hover table-responsive">
<thead class="table-primary">
<tr class="paginate">
<th scope="col">Sl No</th>
<th scope="col">Name of the Shop</th>
<th scope="col">Owner name</th>
<th scope="col">Shop no</th>
<th scope="col">Status</th>
<th scope="col">Status</th>
<th scope="col">Enter daily data</th>
<th scope="col">Report</th>
<th scope="col">Export report</th>
</tr>
</thead>
<?php
require 'dbconnect.php';
if (isset($_POST['id'])) {
$sql = "SELECT * FROM shopmaster WHERE shpid = '" . $_POST['id'] . "' ORDER BY shpname";
$result = mysqli_query($conn, $sql) or die("SQL Query Failed.");
if (mysqli_num_rows($result) > 0) {
$i = 1;
while ($row = mysqli_fetch_array($result)) {
?>
<tbody id='myTable'>
<tr>
<td scope='row'><?php echo $i; ?></td>
<td><?php echo $row['shpname']; ?></td>
<td><?php echo $row['ownername']; ?></td>
<td><?php echo $row1['shpno']; ?></td>
<td><?php echo $row['status']; ?></td>
<td>
<a class="btn btn-warning" href="shopdetails.php?id=<?php echo $row['shpid']; ?> name=" insert">Enter</a>
</td>
<td>
<a class="btn btn-info" href="shpfullRecord.php?id=<?php echo $row['shpid']; ?> name=" report">Report</a>
</td>
<td>
<a class="btn btn-danger" href="createcsv.php?id=<?php echo $row['shpid']; ?> name=" report">Report</a>
</td>
</tr>
<?php
$i++;
}
} else {
echo "No Record Found."
?>
<?php }
}
?>
</tbody>
</table>
1条答案
按热度按时间aiazj4mn1#
在php代码中,你可以忽略要禁用的按钮的HTML中的
href
属性,这样的话,如果你的用户点击了它们,它们将不会执行任何操作。你可以给每个被禁用的按钮添加
disabled
属性,浏览器会显示被禁用的对象变暗或“变灰”。