hi,
ok i have a date column set up in mySQL buts its user defined date not mySQL's date function and i wanna get the newest entrys to teh table so here's my query:
$query = "SELECT id, column1, column2, date FROM mytable GROUP BY id ORDER BY date LIMIT 0,40";
the query works fine BUT it mix's the results up so i thought about ASC or DESC.
ASC = puts the results oldest at the top, newest at the bottom.
DESC = is just crap, only displays 1 days entrys e.g. 30/06/02 buts there's new ones entered on 03/07/02.
is there anyway to get the newest entrys displayed from newest to oldest?
Thanks
Vince