Hola amigos
No puedo ingresar datos atravez de un formulario,he revisado el codigo varias veces y no encuentro error alguno , este es el error:
ERROR al agregar el Contacto - 1064: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 'index (nombre, sede) VALUES ('', '')' at line 1 conexion.inc
<?
$host_db="localhost";
$usuario_db="";
$pass_db="";
$base_db="masnatacion";
?>
alta.php Código PHP:
<?
include('conexion.inc');
$coneccion = mysql_connect($host_db, $usuario_db, $pass_db);
mysql_select_db($base_db, $coneccion);
if($REQUEST_METHOD<>"POST"){
?>
<form method="POST" action="alta.php">
<b>Nombre: </b><input type="text" name="nombre" value="nombre" size="30"><br>
<b>Sede: </b><input type="text" name="sede" value="sede" size="30"><br>
<input type="submit" value="Enviar" name="B1">
<input type="reset" value="Restablecer" name="B2">
</form>
<?
} else{
$nombre = $_GET['nombre'];
$sede = $_GET['sede'];
$sql = "INSERT INTO index (nombre, sede)
VALUES ('$nombre', '$sede')";
$result = mysql_query($sql,$coneccion);
if (!mysql_error())
{
echo "El Contacto $nombre ha sido agregado exitosamente<br>";
}
else
{
echo "ERROR al agregar el Contacto - ". mysql_errno().":". mysql_error()."<br>";
}
}
?>
espero que me puedan ayudar.
saludos y gracias.