40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
include_once('./common.php');
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<title>:: TEST ::</title>
|
|
|
|
<style>
|
|
table, td, th {border-collapse : collapse;}
|
|
.basictblleft {left: 0px; background: url(images/tbl_left.png);}
|
|
.basictblright {right: 0px; background: url(images/tbl_right.png);}
|
|
tr {height: 30px;}
|
|
.basictbl {border-top: 2px solid #a40033; border-bottom: 1px solid #d2c5c5;}
|
|
.subarea {display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 16px; height: 100%;}
|
|
.content {min-height: 240px; height: 100%; min-width: 1300px; width: 100%; padding: 30px 30px; padding-bottom:10px; box-sizing: border-box; background: #fff; box-shadow: 0 0 5px #dadce3; border-radius: 10px; top: 0px;}
|
|
</style>
|
|
|
|
<script language="JavaScript">
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<BODY style="background-color:#eff0f4;">
|
|
<table>
|
|
<?php
|
|
$sql = " select vi_ip, vi_date from g5_visit where vi_date = '2025-07-17' ";
|
|
$result = sql_query($sql);
|
|
while ($row = sql_fetch_array($result))
|
|
{
|
|
?>
|
|
<tr><td><?echo $row["vi_ip"]?></td></tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
</BODY>
|
|
</HTML>
|