Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/07/2013, 22:15
Neitoxz
 
Fecha de Ingreso: julio-2013
Mensajes: 2
Antigüedad: 11 años, 5 meses
Puntos: 0
Exclamación Error de indefined Index

Amigos no haye a quien mas acudir que a su sabiduria... e usado Xampp 1.8.2 y Wamp 2.4.

Sin Rodeos, el Error es el Siguiente:

Cita:
Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Espinoza'', P_AMATERNO='Rodriguez'', P_EDAD='22'', P_FNAC='1992-03-27'', P_DIREC' at line 1
me funciona todo Ingresar datos, consultar datos, y borrar datos. pero este es el ediar, les pongo el codigo.

Cita:
<?php include ("modules/conectdb.php");?>
<?php

$con = mysql_connect($bd_host,$bd_usuario,$bd_password);
if (!$con){die("ERROR DE CONEXION CON MYSQL: " . mysql_error());}
$database= mysql_select_db($bd_base, $con);
if (!$database){die("ERROR CONEXION CON BD: ".mysql_error());}

$query = "UPDATE pacientes SET P_RUT='".$_POST["P_RUT"].
"',P_NOMBRES='".$_POST["P_NOMBRES"]."'".
"', P_APATERNO='".$_POST["P_APATERNO"]."'".
"', P_AMATERNO='".$_POST["P_AMATERNO"]."'".
"', P_EDAD='".$_POST["P_EDAD"]."'".
"', P_FNAC='".$_POST["P_FNAC"]."'".
"', P_DIRECCION='".$_POST["P_DIRECCION"]."'".
"', P_REGION='".$_POST["P_REGION"]."'".
"', P_CIUDAD='".$_POST["P_CIUDAD"]."'".
"', P_COMUNA='".$_POST["P_COMUNA"]."'".
"', P_TELEFONO='".$_POST["P_TELEFONO"]."'".
"', P_CELULAR='".$_POST["P_CELULAR"]."'".
"', P_EMAIL='".$_POST["P_EMAIL"]."'".
"', P_INGRESO='".$_POST["P_INGRESO"]."'".
"', P_PREVISION='".$_POST["P_PREVISION"]."'".
"', P_PRESTACION='".$_POST["P_PRESTACION"]."'".
"', P_MEDICOS='".$_POST["P_MEDICOS"]."'".
"', P_COMENTARIOS='".$_POST["P_COMENTARIOS"]."'".
" WHERE P_RUT='".$_POST["P_RUT"]."'";
$result=mysql_query($query,$con) or die("Error: ".mysql_error());
if (! $result){

echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Registro Actualizado Correctamente')
window.location.href='index2.php';
</SCRIPT>");

exit();

}else{
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('La operacion no fue realisada, por favor contactar Soporte')
window.location.href='soporte.php';
</SCRIPT>");

mysql_close($con);
}
?>
Espero que me puedan ayudar, tengo que entregar esto para el instituto mañana... tare pendiente

desde antes Muchas Gracias!!