shreedhar wrote:
How do we display data 1-10 on click of next 11-20 like soon using php. My
Database is SqlServer2000.
Thanks and Regards,
Sree
Basically you write code to do it. Its not really a PHP issue. Its helps
if the database you are using has something like MySQL's "LIMIT" syntax
so that you do not need to get all of the records just to display 10 of
them. You will find classes to do all of this on www.phpclasses.org but
they will probably use MySQL or Postgres databases so you will need to
modify them for your MS SQL Server database.
HTH
Chris