Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 5, 2020 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/5d36d8c3132d901cd3cf60baedf08103 to your computer and use it in GitHub Desktop.
Save parzibyte/5d36d8c3132d901cd3cf60baedf08103 to your computer and use it in GitHub Desktop.
<?php
include_once "conexion.php";
include_once "Nota.php";
$nota = new Nota($_POST["puntaje"], $_POST["id_estudiante"], $_POST["id_materia"]);
$nota->guardar();
header("Location: notas_estudiante.php?id=" . $_POST["id_estudiante"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment