RE: Query pages by Alphabet

2003-09-09 Thread Dan Greene
ent: Tuesday, September 09, 2003 3:38 PM > To: Dave Dash > Cc: [EMAIL PROTECTED] > Subject: Re: Query pages by Alphabet > > > I'm not quite following what you are asking. If you want to limit the > result to only 10 items per page, you're going to need to > com

Re: Query pages by Alphabet

2003-09-09 Thread Brent Baisley
I'm not quite following what you are asking. If you want to limit the result to only 10 items per page, you're going to need to come up with some paginating code (it actually isn't that hard). You could easily get more than 10 names starting with a single letter. If you want to create specific

Query pages by Alphabet

2003-09-09 Thread Dave Dash
I have a page that is a directory of names ordered by lastname, firstname (e.g. SELECT fn, ln FROM directory ORDER BY ln, fn LIMIT 0,10). I have it paginated so that there are 10 results per page. What I'd like to do instead of having page numbers (which can be unhelpful when trying to page t