I am trying to make a system that you can create/edit multiple choice questions along with answers. Now what I have is a table for questions and a table for answers, a field in the answers table code:
$qexecute = mysql_query("SELECT * FROM `questions` WHERE `type`='1'");
$num = mysql_num_rows($execute);
for($i=0;$i<$num;$i++)
{
$quest = mysql_fetch_assoc($execute);
$aexecute = mysql_query("SELECT * FROM `answers` WHERE `qid`='$i'");
$num = $mysql_num_rows($aexecute);
$a = mysql_fetch_assoc($aexecute);
echo $i . '.' . $quest['questiontext'] . '<br />' . $a['answertext'];
}
And for some reason it outputs nothing.
qids are numbered from 0 to n-1? – Gumbo Jan 20 at 16:34qmissing in$executethat @Pankrates mentioned, you have an extra$in front ofmysql_num_rowson line 7 -$num = $mysql_num_rows($aexecute). – Sean Jan 20 at 18:09