Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Are you sure your qids are numbered from 0 to n-1? – Gumbo Jan 20 at 16:34
1  
First line defines variable $qexecute and the you run mysql_num_rows($execute); Notice the missing 'q' in $execute Maybe a typo but like that it would not work in any case – Pankrates Jan 20 at 16:35
1  
People get more and more lazy having SO at hand :-) – ring0 Jan 20 at 16:36
So there's no correlation between questions and answers? – Strawberry Jan 20 at 17:25
In addition to the q missing in $execute that @Pankrates mentioned, you have an extra $ in front of mysql_num_rows on line 7 - $num = $mysql_num_rows($aexecute). – Sean Jan 20 at 18:09
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.