Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:41 +09:00
commit 5b1bfe3390
2223 changed files with 561621 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<h4>현재 접속자</h4>
<table class="table">
<thead>
<tr>
<th>번호</th>
<th>이름</th>
<th>위치</th>
</tr>
</thead>
<tbody>
<?php
if (element('list', $view)) {
foreach (element('list', $view) as $result) {
?>
<tr>
<td><?php echo element('num', $result); ?></td>
<td><?php echo element('name_or_ip', $result); ?></td>
<td><?php echo element('cur_page', $result); ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<nav><?php echo element('paging', $view); ?></nav>

View File

@@ -0,0 +1,26 @@
<h3>현재 접속자</h3>
<table class="table table-hover mt20">
<thead>
<tr>
<th>번호</th>
<th>이름</th>
<th>위치</th>
</tr>
</thead>
<tbody>
<?php
if (element('list', $view)) {
foreach (element('list', $view) as $result) {
?>
<tr>
<td><?php echo element('num', $result); ?></td>
<td><?php echo element('name_or_ip', $result); ?></td>
<td><?php echo element('cur_page', $result); ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<nav><?php echo element('paging', $view); ?></nav>

View File

@@ -0,0 +1,26 @@
<h4>현재 접속자</h4>
<table class="table">
<thead>
<tr>
<th>번호</th>
<th>이름</th>
<th>위치</th>
</tr>
</thead>
<tbody>
<?php
if (element('list', $view)) {
foreach (element('list', $view) as $result) {
?>
<tr>
<td><?php echo element('num', $result); ?></td>
<td><?php echo element('name_or_ip', $result); ?></td>
<td><?php echo element('cur_page', $result); ?></td>
</tr>
<?php
}
}
?>
</tbody>
</table>
<nav><?php echo element('paging', $view); ?></nav>