Re: [PHP] outputting db content

2001-12-19 Thread Greg Donald
> Does anyone have a quick example of how you would show X numbers of database records at a time from a query? (you know, list 25 of 400 records with next/previous navigation)... Feel free to rip the navigation out of phpLinks and use it: http://phplinks.org/ Have a look in functions.php, I

Re: [PHP] outputting db content

2001-12-19 Thread TD - Sales International Holland B.V.
On Wednesday 19 December 2001 16:28, you wrote: yea that's easy :-) first I have to tell you that the first result is numbered 0 like in arrays ok? now you would do a select like this select * from table limit 10; this will give you the first 10 results since you didn't supply a start number af

RE: [PHP] outputting db content

2001-12-19 Thread Greg Schnippel
> Does anyone have a quick example of how you would show X > numbers of database records at a time from a query? (you > know, list 25 of 400 records with next/previous navigation)... I've used this code snippet and lots of projects and it seems to work pretty well. Would appreciate advice on