What do you mean? :P Below is what i think you mean.
If you want them ordered by an ID do the following
" SELECT `tablename` ORDER BY ID ASC LIMIT 0,15"
Let me break is down and explain it all
" SELECT `tablename`" - Selects the table.
" ORDER BY ID" - Tells MySQL to order by the ID.
" ASC" - Makes the information Ascend.
" LIMIT 0,15" -Limits to 15 ID's, starting from 0.
Last edited by rogem002 : 02-08-2007 at 03:43 PM.
Reason: More needed.
|