Error :
Código PHP:
Error en QueryYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'nombre='Ariel',rut='175006661',edad=22,sexo=1,carrera=2 where id_alumno=' at line 1
Codigo :
Código PHP:
<?php
include("funcion.php");
switch($_GET['op'])
{
case 1: $sq="update alumno set id_alumno=".$_POST['id_alumno'].",nombre='".$_POST['nombre']."',rut='".$_POST['rut']."',edad=".$_POST['edad'].",sexo=".$_POST['sexo'].",carrera=".$_POST['carrera']." where id_alumno=".$_POST['id_alumno'];
$resul=consulta($sq);
header("location:index.php");
break;
default: break;
}
?>
Código PHP:
<p> Ingrese Nombre:
<input type="text" name="nombre"
value="<?php echo $dat['nombre'];?>" />
</p>
<p> Ingrese Rut:
<input type="text" name="rut"
value="<?php echo $dat['rut'];?>" />
</p>
<p> Ingrese Edad:
<input type="text" name="edad"
value="<?php echo $dat['edad'];?>" />
</p>
<p> Ingrese Sexo:
<input type="text" name="sexo"
value="<?php echo $dat['sexo'];?>" />
</p>
<p> Ingrese Carrera:
<input type="text" name="carrera"
value="<?php echo $dat['carrera'];?>" />
</p>
<p>
<input type="submit" name="btnAcepta" value="Aceptar" />
</p>