Muliple Order Staements

wxdqz

New Member
Hello,
I'm building a tabs section on my site and I am storing all of the data in a mysql database. My only problem is with this sql query, I would like it to oder it by thre artist as well as the title. How would I do this? Right now I just have it set to order by the artist.

$query = "select * from tabs where cat=$cat order by artist asc";
 
Back
Top