How to implement a pagination in this code:
<?php
include "connect.php";
$query = mysql_query("SELECT username, date FROM users ORDER BY id ASC");
while($row = mysql_fetch_array($query)):
?>
<div><h5><?php echo $row['username']; ?> (<?php echo $row['date']; ?>)</h5></div>
<?php endwhile; ?>