If you're just needing one row at a time you'll probably be better off using the primary key of the table. If you're returning multiple results you'll probably want to use something like 'LIMIT $start, $perpage'.
For example, if I wanted to display 10 per page, page 1 would be 'LIMIT 0, 10' page 2 would be 'LIMIT 10, 10', page 3 would be 'LIMIT 20, 10', etc...
Do a search in this forum for pagination for more info.
One other thing -- It's not ORDERBY it's ORDER BY