Si se pueden cambiar dentro del while mura:
Código PHP:
Ver original@$aux=$_GET['tematicasId'];
$sql = "SELECT * FROM Evaluaciones WHERE tematicasId='".$aux."'";
$result = mysql_query($sql) or die(mysql_error());
$iNumReg = mysql_num_rows($result);
if ($iNumReg>0)
{
$i = 0;
while ($rowEmp = mysql_fetch_assoc($result))
{ ?>
<table width="615" border="1">
<tr>
<td colspan="3">Pregunta: <?php echo $rowEmp['evaluacionPregunta']; ?></td>
</tr>
<tr>
<td width="38">Opcion</td>
<td width="486">Respuesta</td>
<td width="69">Correcta</td>
</tr>
<tr>
<td>a</td>
<td><?php echo $rowEmp['evaluacionR1']; ?></td>
<td><input name="<?php echo "respuesta [". $i."]"?>" type="radio" value="1" required/></td>
</tr>
<tr>
<td>b</td>
<td><?php echo $rowEmp['evaluacionR2']; ?></td>
<td><input name="<?php echo "respuesta [". $i."]"?>" type="radio" value="2" required/></td>
</tr>
<tr>
<td>c</td>
<td><?php echo $rowEmp['evaluacionR3']; ?></td>
<td><input name="<?php echo "respuesta [". $i."]"?>" type="radio" value="3" required/></td>
</tr>
</table>
<br/><br/>
<?php
$i += 1;
}
}
?>
<a href="curso_desarrollo.php?tematicasId=<?php echo $row_Recordset1['tematicasId']; ?>">Regresar</a>
Lo hice desde el celular asi que si no funciona correctamente trata de tomar la idea y adecuarla.