
aranoid: Me thick....

Me need help........
Whats wrong with this please? I am so confused with what this even does lol so if someone could exlplain that would be great
Code:
$query = "SELECT fanfic_authors.name, fanfic_authors.email, fanfic_contents.author, fanfic_contents.title, fanfic_contents.rating FROM fanfic_authors, fanfic_contents WHERE fanfic_authors.id = fanfic_contents.author GROUP BY fanfic_contents.author, fanfic_contents.title ORDER BY " . $sort . ",title LIMIT " . $start . ", 50";
$result = mysql_query($query);
while($row = mysql_fetch_array($result)){
print($row[title] . "<br>");
}