que es lo que faltaria.. porq no tengo idea
<?php
$int_periodo=1;
$enlace=mysql_connect("localhost:3306","root","");
mysql_select_db("db_evaluacion");
$str_sql_bus_pre = "CALL RHABuscar_Preguntas(".$int_periodo.",1,'A')";
$resultado=mysql_query($str_sql_bus_pre,$enlace);
#echo $str_sql_bus_pre;
$int_preguntas_a=0;
while($preguntas = mysql_fetch_array($resultado) ) {
echo "
<tr>
<td colspan='2' rowspan='13' align='center' valign='top'></td>
<td height='21'><div align='center'><strong>".$preguntas['indice']."</strong></div></td>
<td width='368'>".$preguntas['preguntas']."</td>
<td width='14'> </td>
<td colspan='2' valign='middle' align='center'><input name='pregunta_a[".$int_preguntas_a."]' type='radio' value='1'></td>
<td valign='middle' align='center'><input name='pregunta_a[".$int_preguntas_a."]' type='radio' value='2'></td>
<td valign='middle' align='center'><input name='pregunta_a[".$int_preguntas_a."]' type='radio' value='3'></td>
<td valign='middle' align='center'><input name='pregunta_a[".$int_preguntas_a."]' type='radio' value='4'></td>
<td colspan='2' valign='middle' align='center'><input name='pregunta_b[".$int_preguntas_a."]' type='radio' value='5'></td><input type='hidden' name='cod_pre_a[".$int_preguntas_a."]' value='".$preguntas['codigo']."' >
</tr>";
$int_preguntas_b++;
}
?>
GRACIAS!