点击链接以显示模式

时间:2018-08-07 13:31:12

标签: php bootstrap-modal

希望这里有人可以提供帮助。

我正在尝试单击“查找离您最近的供应商”以显示模式。

该信息来自数据库,并完美列出它们。但是,当单击时,只有第一个“查找最接近您的供应商”链接会显示模式,而其他都不显示。

似乎无法弄清楚我错过了什么?

谢谢。

<tbody>

<?php while ($row=$read->fetch_assoc()) { ?>

    <tr class="info">
        <td><img src="uploads/<?php echo  $row['images']; ?>"</td>
        <td><?php echo  $row['manu'], $row['name']; ?></td>
        <td><?php echo  $row['address'];   ?></td>
        <td><a href="<?php echo  $row['website'];   ?>" target=_blank> Website </a></td>        
        <td><button id="modalBtn" class="button">Find the Nearest Supplier to you</button></td>
            <div id="simpleModal" class="modal">
                <div class="modal-content">
                    <span class="closeBtn">&times;</span>
                        <p>I am a modal.......</p>
                </div>
            </div>                       
    </tr>

<?php } ?>
</tbody>

0 个答案:

没有答案