<form action="" method="post" name="CA" id="C">
</table>
<table width="80%" border="0">
<?php
include("cxn.php");
$sql="SELECT * FROM tabla1";
$rs=mysql_query($sql,$conn);
$n=mysql_num_rows($rs);
$tam=7; if($inf=="")$inf=0;
$sql="SELECT * FROM tabla1 LIMIT $inf,$tam";
$rs=mysql_query($sql,$conn);
while($row=mysql_fetch_array($rs)){
?>
<tr valign="middle">
<td width="80%"><font color="#000033"><b><? echo $row["No"] ?></b>. <? echo $row["Pregunta"] ?></font></td>
</tr>
<tr>
<td><table border="0">
<tr valign="middle">
<td width="7%" height="30"></td>
<td width="300"><font color="#000033">
<input type=radio name="respuesta1" value=1>
<? echo $row["respuesta1"] ?></font></td>
<td width="300"><font color="#000033">
<input type=radio name="respuesta2" value=2>
<? echo $row["respuesta2"] ?></font></td>
<td width="300"><font color="#000033">
<input type=radio name="respuesta3" value=3>
<? echo $row["respuesta3"] ?></font></td>
</tr>
</table></td>
</tr>
</table>
<?php } ?>
<p> </p>
</form>