Last active
March 13, 2018 14:58
-
-
Save wichaksono/405178e823a5fd9ecc0787720664f89a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'config.php'; | |
$sql = "SELECT * FROM statistik ORDER BY date_create DESC"; | |
$query = $db->query($sql); | |
?> | |
<h3>Daftar User yang pernah mengakses Halaman</h3> | |
<table border="1"> | |
<tr> | |
<td>IP</td> | |
<td>Browser</td> | |
<td>OS</td> | |
<td>Date</td> | |
</tr> | |
<?php | |
while ($row=$query->fetch_assoc()) { ?> | |
<tr> | |
<td><?php echo $row['ip'];?></td> | |
<td><?php echo $row['browser'];?></td> | |
<td><?php echo $row['os'];?></td> | |
<td><?php echo $row['date_create'];?></td> | |
</tr> | |
<?php } ?> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment