1

我正在做关于php的问卷调查,我是php新手。当我尝试显示答案时,它只显示前两个问题。在这两个问题之后,没有显示答案。我在这里附上了来源。

请使用以下链接查看该页面。 http://itsupportsrilanka.com/uaquiz/quiz.php

<body>

<form action="test.php" method="POST">


   <?php
            $result = select("SELECT * FROM questions ");
            //$row = mysql_fetch_array($result);


        ?>
<?php
$i=1;
while($row = mysql_fetch_array($result))
{
?>
<table width="581" height="299" border="1">
<tr>
<td>Union Assurance Questionnaire</td>
</tr>
<tr>
<td><?php echo $i.'.' .$row['questions']; ?>
<?php $i++; ?>
</td>
</tr>
<tr>
<td>
<?php $qId=$row['question_id'];

$result1=select("SELECT * FROM answers WHERE questionId='$qId' ORDER BY RAND()");
while($row1=mysql_fetch_array($result1)){

    ?>
    <input type="radio" name="answers" value="<?php echo $row1['answers'];?>" / ><?php echo $row1['answers']; ?><br/>


<?php 
} ?>
&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
</table>
<?php
}
?>
</form>
</body> 

在此处输入图像描述 在此处输入图像描述

4

1 回答 1

0

代替

$result = select("SELECT * FROM questions "); with $result = mysql_query("SELECT * FROM questions ");

$result1=select("SELECT * FROM answers WHERE questionId='$qId' ORDER BY RAND()"); with 
$result1=mysql_query("SELECT * FROM answers WHERE questionId='$qId' ORDER BY RAND()");

然后再试一次

于 2012-09-24T08:48:14.040 回答