[PHP] Re: Need example of Next 5>>

2002-08-26 Thread Justin Garrett

Let's try that again.

SELECT * FROM table LIMIT 5,5;   # get rows 6 - 10
SELECT * FROM table LIMIT 10,5  # get rows 11 - 15

Justin Garrett

> Hi,
>
> I am looking for an example in php/MySql dealing with Next 5 > type of
> queries ..does anyone have any links?
>
> Thank you for your help
> Pax
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP] Re: Need example of Next 5>>

2002-08-26 Thread Justin Garrett

http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#SEL
ECTSELECT * FROM table LIMIT 5,5;  # Retrieve rows 6-10
SELECT * FORM table LIMIT 10,5; # Retrieve rows 11 - 15Justin Garrett"Pax"
<[EMAIL PROTECTED]> wrote in message
001901c24d49$e7830530$6401a8c0@pawel">news:001901c24d49$e7830530$6401a8c0@pawel...
>
> Hi,
>
> I am looking for an example in php/MySql dealing with Next 5 > type of
> queries ..does anyone have any links?
>
> Thank you for your help
> Pax
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php