Can anyone see what is wrong here? This is my first serious attempt at this.
<?php
$query1 = mysql_query("
SELECT topics.url_big, topics.url_small, topics.title, topics.".$egroup.", quiz.passState
FROM topics
INNER JOIN quiz
ON (topics.managerId = quiz.".$managerId.")
WHERE topics.".$egroup." = 1
ORDER BY title ASC");
?>