Disculpen no haber respondido antes, estuve sin internet 3 dias.. :S
Este es mi FOR el cual funciona bien!:
Código PHP:
for($i=0;$i<count($_POST["idnEst"]); $i++){
$notaTrimestre3="".$_POST['notaTrimestre3'][$i]."";
//Dentro del for hago una validacion
if($CohorteSec==1){
$trimestre_porcentaje = mysql_query("SELECT nota_primer_trimestre FROM nota_primer_trimestre WHERE periodo='".$periodo_trimestre1."' and trimestre='1'";
$NOTA_trimestre1 = $valor_procentaje['nota_primer_trimestre'];
}
//Fuera del IF coloco mi insert
$insertar_nota=mysql_query("INSERT INTO nota(estudiante, asignatura, docente, cod_seccion, nota_primer_trimestre, nota_tercer_trimestre, trayecto, usuario) VALUES ('".$cedulaEst."','".$_SESSION['tmpAsignatura']."','".$cod_profesor."','".$_SESSION['tmpSeccion']."','".$NOTA_trimestre1."','".$notaTrimestre3."','".$Procentaje_trimestre3."','".$TrayectoSec."','".$usuario."')",$conexion);
}
Notas:
$NOTA_trimestre1 =
Es el dato del select que hago dentro del for, el cual solo me inserta el primer registro..y por ende el del problema!
$notaTrimestre3 =
Es el valor que viene de un formulario (Este me hace bien el recorrido) y los guarda tal cual como corresponden.
Gracias por su tiempo!