> Thank you, What i meant is that > If i search in a table all people that speaks English. > I want mysql to search for the first 10 people that matche the query, then have an > option next to go from the last person > to the next 10 people. Or something better > would be SELECT FROM tablex START FROM PERSON y WHERE language = 'english' > LIMIT 10 And I don't know if what i'm looking for is possible or not.
Yes it's possible. You'll need to visit mysql.com to find out about queries that select a certain range of records, search.cpan.org for DBI to learn how to use those queries in perl and build your query based on what the user selected ( back 1 2 _3_ 4 next ) and then build your navigation links based on that also. HTH DMuey -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]