I am really confused about how to order by date formats.
For the format YYYY-MM-DD you will do this: ...ORDER BY date DESC...
How will you order by DD/MM/YYYY?
This isn't working:
SELECT * FROM $table ORDER BY DATE_FORMAT(Date, '%Y%m%d') DESC LIMIT 14