表中的数据没有按我想要的方式显示


Data in table not displaying the way I want it to

我有一个微调器,发生的事情是,无论微调器中的数字是什么,当提交表单时,它应该显示单词"quest"的次数与微调器中的数字一样多。例如,如果spinner中的number为3,那么它将在表中显示"quest"3次。

问题是在表中显示。

在我当前的代码中,它是这样显示的:

quest
quest
quest
Question Id, Option Type, Duration .... These are table headings

在表外显示单词查询

相反,我希望"quest"这个词像这样显示在Question Id列中:

Question Id, Option Type, Duration...
quest
quest
quest

我怎样才能让它像上面的例子那样显示它呢?

Below is code
 <table border=1 id="qandatbl" align="center">
    <tr>
    <th class="col1">Question No</th>
    <th class="col2">Option Type</th>
    <th class="col1">Duration</th>
    <th class="col2">Weight(%)</th>
    <th class="col1">Answer</th>
    <th class="col2">Video</th>
    <th class="col1">Audio</th>
    <th class="col2">Image</th>
    </tr>
    <?php
    $spinnerCount = $_POST['txtQuestion'];
if($spinnerCount > 0) {
   for($i = 1; $i <= $spinnerCount; $i++) {
     echo "<tr>quest";
   }
}
?>
    <td class='qid'></td>
    <td class="options"></td>
    <td class="duration"></td>
    <td class="weight"></td>
    <td class="answerswer"></td>
    <td class="video"></td>
    <td class="audio"></td>
    <td class="image"></td>
    </tr>
    </table>

我确实尝试了echo "<td class='qid'></td>";,但这也完全失败了

试试这个:

<table border=1 id="qandatbl" align="center">
<tr>
  <th class="col1">Question No</th>
  <th class="col2">Option Type</th>
  <th class="col1">Duration</th>
  <th class="col2">Weight(%)</th>
  <th class="col1">Answer</th>
  <th class="col2">Video</th>
  <th class="col1">Audio</th>
  <th class="col2">Image</th>
</tr>
<?php
 $spinnerCount = $_POST['txtQuestion'];
  if($spinnerCount > 0) {
   for($i = 1; $i <= $spinnerCount; $i++) {
?>
  <tr>
   <td class='qid'><?php echo $quest; ?></td>
   <td class="options"></td>
   <td class="duration"></td>
   <td class="weight"></td>
   <td class="answerswer"></td>
   <td class="video"></td>
   <td class="audio"></td>
   <td class="image"></td>
</tr>
<?php
 } // For
} // If
?>
</table>

这是你想要做的吗?在第一列显示"任务"?

<table border=1 id="qandatbl" align="center">

   <tr>
    <th class="col1">Question No</th>
    <th class="col2">Option Type</th>
    <th class="col1">Duration</th>
    <th class="col2">Weight(%)</th>
    <th class="col1">Answer</th>
    <th class="col2">Video</th>
    <th class="col1">Audio</th>
    <th class="col2">Image</th>
    </tr>
    <?php
    $spinnerCount = $_POST['txtQuestion'];
if($spinnerCount > 0) {
   for($i = 1; $i <= $spinnerCount; $i++) { ?>
     <tr>
    <td class='qid'>quest</td>
    <td class="options"></td>
    <td class="duration"></td>
    <td class="weight"></td>
    <td class="answerswer"></td>
    <td class="video"></td>
    <td class="audio"></td>
    <td class="image"></td>
    </tr>
<?php
}
}
?></table>

?>