Re: [PHP] Paging a Recordset

2001-03-15 Thread Manuel Lemos
Hello, James Crowley wrote: > > Hi, > I want to spread the results of a recordset over a number of pages. In ASP, > I would have opened a connection with a client-side cursor... but with PHP > (using it's ODBC functions), it only seems to be able to execute an SQL > statement, and return

Re: [PHP] Paging a Recordset

2001-03-15 Thread Web master
you can use 'limit x,y' in MySql. James Crowley wrote: > Hi, > I want to spread the results of a recordset over a number of pages. In ASP, > I would have opened a connection with a client-side cursor... but with PHP > (using it's ODBC functions), it only seems to be able to execute an SQL

[PHP] Paging a Recordset

2001-03-15 Thread James Crowley
Hi, I want to spread the results of a recordset over a number of pages. In ASP, I would have opened a connection with a client-side cursor... but with PHP (using it's ODBC functions), it only seems to be able to execute an SQL statement, and return all the results... which isn't very effic