Código:
Se pudo conectar correctamente
Notice: Undefined index: nombre in C:\xampp\htdocs\practica2\operacionesBase.php on line 6
Notice: Undefined index: apellido in C:\xampp\htdocs\practica2\operacionesBase.php on line 7
Notice: Undefined index: edad in C:\xampp\htdocs\practica2\operacionesBase.php on line 8
Notice: Use of undefined constant ALTA - assumed 'ALTA' in C:\xampp\htdocs\practica2\operacionesBase.php on line 12
Este es el fuente de operacionesBase.php:
Código:
<?php
include ("conexion.php");
$idTemp=$_POST['id'];
$nombreTemp=$_POST['nombre'];
$apellidoTemp=$_POST['apellido'];
$edadTemp=$_POST['edad'];
switch($_POST['accion'])
{
case Alta:
$query="insert into alumnos values ('$idTemp','$nombreTemp','$apellidoTemp','$edadTemp')";
$result=mysql_query($query,$conexion) or die ("Fallo la alta");
echo "La alta se produjo correctamente";
break;
}
?>
Y este es el codigo html que lo llama, me podrian indicar donde me estoy equivocando??
Código:
<html>
<title>Alta de alumno</title>
<body>
<form action='operacionesBase.php' method='POST'>
ID: <input type='text' name='id'><br>
NOMBRE: <input type='text' name='id'><br>
APELLIDO: <input type='text' name='id'><br>
EDAD: <input type='text' name='id'><br>
<input type='submit' name='accion' value='Alta'>
</form>
</body>
</html>
Gracias
Saludos