setTimeout("window.location = 'index.php'", 1000);
                
            }
        })
        
        return false;
    }); 
})  
</script>
<form method="post" action="includes/src/AlumnoInscribirCurso.php" name="fInsCursos" id="fInsCursos">
    <table class="bordered">
        <tr>
                <th>ID Curso</th>
                <th>Nombre</th>
                <th>Ciclo</th>
                <th>Creditos</th>
                <th>Seleccionar</th>
        </tr>

<?php 
include "includes/class/alumno.php";
$alumno = new alumno();
$rsCursos = $alumno->listarCursosDisponibles($_SESSION["user"]);
?>
    <tr>
        <td colspan="2"><input type="submit" class="button_login" value="GUARDAR"/></td>
        <td colspan="3"><input type="button" class="button_login" onclick="history.back()" value="CANCELAR"/></td>
    </tr>
    </table>
</form>
<div id="result"></div>