Forum Moderators: coopster
This works:
$query_raw = "SELECT distinct(to) * from " . $table_in_use . " order by to desc";
this doesn't:
$query_raw = "SELECT distinct(to,subject) * from " . $table_in_use . " order by to desc";
Is it possible to do, what I am trying to achieve?