如何在TABLE FORM中显示来自不同表的列?

时间:2015-10-01 09:24:43

标签: html

我想将此行显示为表格形式:

<?php
   while($row = $ogdata->fetch_array()){
?>
<?php  
   echo "<input type='radio' disabled>".$row['text']; 
   $ans = $row['is_answer'];
   if($ans == 1)
      echo "<span style=font-family;color:green;>&nbsp;<div class='glyphicon glyphicon-ok'>CorrectAnswer</div></span>";
?>                                           
<?php }?>

1 个答案:

答案 0 :(得分:0)

我认为你必须在你的mysql查询中加入表。