I have a problem to concatenate a query with order by
...ORDER BY post_author DESC, post_date DESC;
This query works in mysql perfectly. But in php I do not know how to add the comma (,)
'orderA' is post_author 'orderB' is DESC 'orderC' is post_Date
return $s['orderA']." ".$s['orderB']." ".$s['orderC']." ".$s['orderB'];
how do I add the comma between ". $ s ['orderB']." and ". $ s ['orderC']."
thanks