insertar_alumno.php
Código PHP:
<?php
//insertar alumnos
$apellido = $_POST['txtapellido'];
$nombre = $_POST['txtnombre'];
$direccion = $_POST['txtdireccion'];
$telefono = $_POST['txttelefono'];
$email = $_POST['txtemail'];
$cn = mysqli_connect("localhost","root","","proyecto");
$rs = mysqli_query($cn,"call pa_insalumno('$apellido','$nombre','$direccion','$telefono','$email')");
mysqli_close($cn);
mysqli_error($cn);
header("location:index.php");
?>
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
$cn=mysqli_connect("localhost","root","","proyecto");//para conectarse a una base de datos con procedimientos
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="style.css" type="text/css" />
<title>Documento sin título</title>
<style type="text/css">
<!--
.Estilo15 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
.Estilo16 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}
body {
background-color: #CCCCCC;
}
-->
</style>
</head>
<body>
<table width="968" border="0" align="center" bgcolor="#E6E5BA">
<tr bgcolor="#E6E5BA">
<th width="962" scope="col"><p><img src="imagenes/header.jpg" width="940" height="200" /></p> </th>
</tr>
<tr bgcolor="#E6E5BA">
<th scope="row"><div id="contenido">
<div class="menu">
<div id="menu_i"></div> <div id="menu_d"></div>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Cursos</a></li>
<li><a href="#">Quienes</a></li>
<li><a href="#">Login</a> </li>
<li><a href="#">Contacto</a></li>
</ul>
</div><!-- fin Menu -->
</div><!-- fin Contenido --></th>
</tr>
<tr bgcolor="#E6E5BA">
<th scope="row"><form id="form9" name="form9" method="post" action="insertar_alumno.php">
<table width="351" border="0" align="center">
<tr bgcolor="#B6B04F">
<th colspan="2" scope="col"><span class="Estilo16">Registrar Alumno</span></th>
</tr>
<tr bgcolor="#FFFFFF">
<th width="120" scope="row"><div align="left"><span class="Estilo15">Apellidos:</span></div></th>
<td width="215"><label></label>
<label></label>
<input type="text" name="txtapellido" id="txtapellido" /> </td>
</tr>
<tr bgcolor="#FFFFFF">
<th scope="row"><div align="left"><span class="Estilo15">Nombre:</span></div></th>
<td><label>
<input type="text" name="txtnombre" id="txtnombre" />
</label> </td>
</tr>
<tr bgcolor="#FFFFFF">
<th scope="row"><div align="left"><span class="Estilo15">Direccion:</span></div></th>
<td><label>
<input type="text" name="txtdireccion" id="txtdireccion" />
</label> </td>
</tr>
<tr bgcolor="#FFFFFF">
<th scope="row"><div align="left"><span class="Estilo15">Telefono</span>:</div></th>
<td><label>
<input type="text" name="txttelefono" id="txttelefono" />
</label> </td>
</tr>
<tr bgcolor="#FFFFFF">
<th scope="row"><div align="left"><span class="Estilo15">E-mail:</span></div></th>
<td><label>
<input type="text" name="txtemail" id="txtemail" />
</label> </td>
</tr>
<tr bgcolor="#FFFFFF">
<th scope="row"> </th>
<td><label>
<input type="submit" name="btnregistrar" id="btnregistrar" value="Registrar" />
</label></td>
</tr>
</table>
</form> </th>
</tr>
<tr bgcolor="#B6B04F">
<th scope="row"> </th>
</tr>
</table>
</body>
</html>