Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/09/2012, 17:10
xoceunder
 
Fecha de Ingreso: junio-2012
Ubicación: En el Mundo
Mensajes: 766
Antigüedad: 12 años, 5 meses
Puntos: 10
problema al INSERT en mysql

hola es que estoy creando un script para poder insertar y modificar y eliminar

tengo esto

Código PHP:
Ver original
  1. if (isset($_POST["insert"]) and $_POST["insert"] == "from1") {
  2.     $name = trim(stripslashes($_POST["name"]));
  3.     $ip = trim(stripslashes($_POST["ip"]));
  4.     $key = trim(stripslashes($_POST["key"]));
  5.     mysql_select_db($database_conn, $conn);
  6.     $sql = mysql_query("SELECT * FROM aceso WHERE key='".$key."'");
  7.     $rowcheck = mysql_num_rows($sql);
  8.     if ($distributor == "" or $ip == "" or $key == "") {
  9.         $nouser = "true";
  10.      } else {
  11.         $nouser = "false";
  12.         if($rowcheck == 1){
  13.         $userexists = "true";
  14.         } else {
  15.         $userexists = "false";
  16.              mysql_query("INSERT INTO aceso (name, ip, key, date, status) VALUES ('".$name."', '".$ip."', '".date("Y-m-d H:i:s")."', '1')") or sqlerror();
  17.             $status = "Distibuidor <b>".$distributor."</b> fue agregado!";
  18.         }
  19.     }
  20. }

pero al insertar me tira este estor

MySQL Server 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 'key, date, status) VALUES ('ss', 'ss', '2012-09-19 20:03:20', '1')' at line 1

que podria ser