Hay everyone need abit of help i a noob when it come to php :(
In my database i have a table called movies and i have 12 columns in there but i used 2 collumns for sorti
Just seperate the order columns by a comma.
$order = "ORDER BY imdb_rating, year DESC";
You should definitely consider to use another MySQL extension as well, mysql_* is deprecated, use mysqli_* or PDO. I prefer PDO.
mysql_*
mysqli_*
PDO