Código PHP:
$grupo='1';
$preguntas = $detalle->BuscaPreguntas($grupo);
while ($row = odbc_fetch_array($preguntas)) {
echo '<tr>';//ABRE FILA
echo '<td>'.utf8_encode($row['Pregunta']);//ABRE COLUMNA
echo '<td>';
echo "<select name='Calificacion[]' id='Calificacion'><>";
$calificacion = $detalle->BuscaCalificacion();
while($registro=odbc_fetch_array($calificacion))
{
echo "<option value='".$registro["Calificacion"]."'>".$registro["Calificacion"]."</option>";
}
echo "</select>";
echo '</td>';
echo '</td>';
//echo '<td>'."<textarea name='comments2' cols='90' rows='1'></textarea>".'</td>';//COLUMNA 3
echo '</tr>';
//echo '<input name="seleccion1[]" id="seleccion1" type="hidden" value="'.$row['Pregunta'].'+'.Calificacion[].'" />';
//$array = array($row['Pregunta']);
echo '<input name="seleccion1[]" id="seleccion1" type="hidden" value="'.$row['Pregunta'].'" />';
}//
Muchas gracias