이용횟수 추가

This commit is contained in:
2026-02-20 11:40:43 +09:00
parent bff2a4ae2b
commit 4900f86d74

View File

@ -36,6 +36,7 @@ $file_name = "annual_member_list_".date("ymd")."_".date("His")."xls"; // 파일
<th class="tit">이메일</th>
<th class="tit">주소</th>
<th class="tit">최종이용일</th>
<th class="tit">이용횟수</th>
</tr>
</thead>
<tbody>
@ -55,6 +56,7 @@ $file_name = "annual_member_list_".date("ymd")."_".date("His")."xls"; // 파일
<td class="no-text"><?php echo $row['email']; ?> </td>
<td class="no-text"><?php echo $row['addr']; ?> </td>
<td class="no-text"><?php echo ($row['last_ent_date'] == '0000-00-00 00:00:00') ? '미이용' : date('Y-m-d', strtotime($row['last_ent_date'])); ?> </td>
<td class="no-text"><?php echo $row['ent_count']; ?> </td>
</tr>
<?php } // 반복문 종료 ?>