Ejemplo n.º 1
0
<?php

session_start();
require '../class/alumno.php';
include '../conexion.php';
$alumno = new alumno();
$id = $_GET["id"];
$semestre = $_GET["semestre"];
$datosBasicos = $alumno->datosBasicosBN($id, $semestre);
$rsPromP = $cn->query("SELECT getPromedioPonderado('{$id}','{$semestre}') AS promediop");
$rstotalC = $cn->query("SELECT getTotalCreditosXSemestre('{$id}','{$semestre}') AS 'totalCreditos'");
$rowPromP = $rsPromP->fetch_array(MYSQLI_ASSOC);
$rowtotalC = $rstotalC->fetch_array(MYSQLI_ASSOC);
?>
<!DOCTYPE HTML>
<head>
	<meta http-equiv="content-type" content="text/html" />
	<meta name="author" content="tibiyacks" />
<link rel="stylesheet" type="text/css" href="../../../css/tabla1.css"/>
<link rel="stylesheet" type="text/css" href="../../../css/tboletaNotas.css"/>
</head>

<body>

<table class="cabeceraboleta">
    <tr>
        <th colspan="4">BOLETA DE NOTAS</th>
    </tr>
    <tr>
        <th>Escuela: </th>
        <td><?php