retwis/timeline.php
2018-12-27 16:00:48 +01:00

14 lines
275 B
PHP

<?php
include("retwis.php");
include("header.php");
?>
<h2>Timeline</h2>
<i>Latest registered users (an example of sorted sets)</i><br>
<?php
showLastUsers();
?>
<i>Latest 50 messages from users aroud the world!</i><br>
<?php
showUserPosts(-1,0,50);
include("footer.php")
?>