mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-05-19 00:30:21 -07:00
24 lines
437 B
PHP
24 lines
437 B
PHP
|
|
<?php
|
|
global $TEMPLATE_VARS;
|
|
?>
|
|
|
|
<table><tr><td>id</td><td>title</td></tr>
|
|
<?php
|
|
while ($res = mysql_fetch_assoc($TEMPLATE_VARS["lastreplied"])) {
|
|
?>
|
|
<hr>
|
|
<tr><td><? print $res["id"] ?></td><td><? print $res["title"] ?></td></tr>
|
|
<?php
|
|
|
|
} ?>
|
|
</table>
|
|
<br>
|
|
Favorited threads:
|
|
<br>
|
|
<?php
|
|
|
|
while ($res = mysql_fetch_assoc($TEMPLATE_VARS["favorited"])) {
|
|
var_dump($res); ?> <br> <?php
|
|
} ?>
|