Hey guys,
wonder if you guys can help me out.
Urm, how can i make a multipage menu for those results returned form my databases with php?
Multipage Menus
can you explain what you mean by "multipage"
Firstly, thanks for your reply.
I've take a screenshot as an example.
Link as follwing: http://image.saltless.net/multi_page.jpg
<?php
$counter = 10; // amount of numbes required
$count = 1;
while($counter > 0){ ?>
<a href="http://example.com/page?id=
<?php
echo $count;
?>
"><?php echo $count ?></a>
<?php
$count = $count + 1;
$counter = $counter - 1;
}
?>