22 lines
323 B
PHP
22 lines
323 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* pagnination short summary.
|
||
|
*
|
||
|
* pagnination description.
|
||
|
*
|
||
|
* @version 1.0
|
||
|
* @author kaiarn
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<div class="results_pagination">
|
||
|
<?php if(isset($numOfHits)): ?>
|
||
|
<p class="info_small">
|
||
|
<strong>
|
||
|
<?php echo($numOfHits) ?>
|
||
|
</strong>
|
||
|
</p>
|
||
|
<?php endif; ?>
|
||
|
</div>
|