ok so i have a query:
$query_options = "SELECT * from solutions where parent_node=$current_parent order by desc rank";
and it doesnt work.... i need to have it select everything that matches parent_node=some number, and then order these matching records by descending value of the rank column
if i use the following query:
$query_options = "SELECT * from solutions where parent_node=$current_parent order by rank";
everything works fine, except that the order is ascending and not descending (of course).... any help would be appreciated, thanks