Добрый вечер! Впервые работаю с таблицами, столкнулся с такой проблемой. Имеется таблица в html форме, как сделать так, чтобы таблицы заполнялись данными с БД? Как правильно составить SQL запрос? С функциями и массивами дело не имел, только начинаю изучать, буду рад любой помощи :)
HTML:
<tbody>
<tr>
<td>1</td>
<td style="text-align: center;">
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
подробно
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Заголовок</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
текст
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Закрыть</button>
</div>
</div>
</div>
</div>
</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
<td style="text-align: center">
<a class="wa" href="https://wa.me/номер с базы" target="_blank" data-pjax="0">
<img src="logo" width="20" height="20" alt="">
</a>
</td>
<td>ТЕКСТ</td>
<td>ТЕКСТ</td>
</tr>
</tbody>