Simple query
When passing a variable to a query I do:
->order($item);
which returns values sorted by the item column.
I would also like to sort the returned value in descending order. When I do:
->order($item,desc);
it doesn't work. This is most likely very simple but I'm not getting very far with it
|