<table id="example2" class="table table-bordered table-striped">
<thead>
<tr>
<td>제품명</td>
<td>구분</td>
<td>규격</td>
</tr>
</thead>
<tbody>
<?php
for ($i=0; $i <5 ; $i++) {
?>
<tr>
<td>a</td>
<td>a</td>
<td>a</td>
</tr>
<?php } ?>
</tbody>
</table>
'PHP' 카테고리의 다른 글
for 문으로 select 항목들 불러오기 (0) | 2021.07.05 |
---|---|
php Division by zero 오류 (0) | 2021.07.05 |
php 날짜 월, 일, 시간 앞의 무의미한 0 제거 (0) | 2021.07.02 |
json 데이터 표에 나타내기 .append (0) | 2021.06.30 |
php ajax json 타입으로 자료 받아올 때 한글 깨짐 고치는법 (0) | 2021.06.30 |