I\'m trying to group down records by their priority levels, e.g.
--- Priority: High --- Records...
--- Priority: High ---
Records...
If you use mysql why would not you use DB ordering capabilities?
SELECT * FROM items ORDER BY priority DESC