Can anyone point me to documentation on how I could achieve manual ordering of items(database rows) through an admin interface? I am not talking about how to use "ORDER BY" mysql command but how to work with ordering items in a database that are in no particular order (ex not to be displayed in alphabetical order etc). I know you would possible use unique IDs for rows but how to swap them for those above or below. Some may have seen this in joomla where the user clicks an up or down arrow to move that item.
In Rails, they'd tell you to add a position column in your database table specifically to use as a sort field. I know that may not be an option for you, but that's one way to do it.