FW: Display Records in Multiple Pages

2002-06-27 Thread Bert VdB
ope it helps, CB -Original Message- From: Aqua [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 07:55 To: [EMAIL PROTECTED] Subject: Display Records in Multiple Pages I have 100 records in mySQL database and I need to display them in my web page using php and html. How to display

Re: Display Records in Multiple Pages

2002-06-27 Thread Alexander Barkov
You can use LIMIT clause: SELECT fields FROM table LIMIT X,25 where X is number of row to start with. You can substitute this number for example in HREF: Page2 Page3 Page4 then your script should take X value and use it to compose the query. Aqua wrote: > I have 100 records in mySQL database

Display Records in Multiple Pages

2002-06-26 Thread Aqua
I have 100 records in mySQL database and I need to display them in my web page using php and html. How to display them in multiple pages? Each page must contain 25 records. Does anyone know how to do it other than create 4 pages and manually list the records there? or maybe point me some reference