I'm trying to take somebody else's code who used to work my job but is gone and add a sort order. Right now it's ascending by date. I need it to descend.$Query='select * from '.$Category.' where isAvailable<>""';
Normally this would be done by adding thisSELECT * FROM table_nameORDER BY Date DESC
I tried this but it didn't work.$Query='select * from '.$Category.' ORDER BY Date DESC where isAvailable<>""';
I know it's something simple as I'm not the best coder around. Any help will do.