Code Library is at http://www.phpbuilder.com/snippet/
Now for doing what you need to do,
Replace
SELECT * FROM guests
by
SELECT * FROM guests LIMIT $start,10
Just at the start of your PHP script give:
if(!isset($start)||$start=="") $start=0;
For giving next/prev links in guestbook:-
<a href="guestbook.php?start=<? echo $start-10; ?>">PREV</a>
<a href="guestbook.php?start=<? echo $start+10; ?>">NEXT</a>