William Martell wrote:

>I do not know how to do this??  Can anyone point me in the right
>direction???
>  
>
Look up the LIMIT option in MySQL.

if (! $StartAt) {
    $StartAt = 0;
}
... SELECT .... LIMIT $StartAt, $PerPage;
$StartAt += $PerPage;

... then either session_register your startat variable or just pass it 
GET-style like search engines do.

-- 
Michael T. Babcock
C.T.O., FibreSpeed Ltd.
http://www.fibrespeed.net/~mbabcock



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to