The boostrap table is inside the boostrap modal. I'm trying to display data in the table from the server which I hosted locally but the code , turns white when i introduce the while(){} loop. Below is my code.
  <?php while($products = $result->fetch_assoc()){
                    <tr class="table-success">
                    <th scope="row">
                      <div class="form-check">
                        <input class="form-check-input" type="checkbox" value="">
                    </div>
                   </th>
                    <td><?= some code?></td>
                    <td><?= some code?></td>
                    <td><?= some code?></td>
                   </tr>
                  } ?>
 
    