A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
841 B

</table>
<?php if ($_GET['content'] == 'userposts' || $_GET['content'] == 'lastposts')
{
?>
<div style="width: 100%; text-align: right">
<span class="fsmall"><?=$skin['lpage']; ?>:
<select name="page" onchange="location='<?= $_SERVER['REQUEST_URI']; ?>&amp;page='+(this.value)">
<?= $skin['option_pages']; ?>
</select>
<?= $skin['lwith']; ?> <?= $skin['lpages']; ?>
</span>
</div>
<?php
}
else
{
?>
<form action="<?= $_SERVER['REQUEST_URI']; ?>" method="post">
<input type="hidden" name="keywords" value="<?= $skin['keywords']; ?>">
<div style="width: 100%; text-align: right">
<span class="fsmall"><?=$skin['lpage']; ?>:
<select name="page" onchange="this.form.submit()">
<?= $skin['option_pages']; ?>
</select>
<?= $skin['lwith']; ?> <?= $skin['lpages']; ?>
</span>
</div>
</form>
<?php
}
?>