1

Hopefully someone here can help.

I am trying to click on "find the nearest supplier to you" to bring up a modal.

The info comes from a database and lists them perfectly. However only the first "Find the nearest supplier to you" link when clicked bring up the modal but none of the others.

Can't seem to figure out what I have missed?

Thanks in advance.

<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>
Mickaël Leger
  • 3,426
  • 2
  • 17
  • 36
scubadivingfool
  • 637
  • 1
  • 5
  • 8

0 Answers0