Why I try to do an order by query, I always get an error telling me to check the syntax by the ORDER BY \'order\' DESC.... Here\'s my query:
SELECT * FROM p
The column name is order which is a keyword. You need to do this:
order
SELECT * FROM posts ORDER BY `order` DESC;