Jump to content

Problemas con mi script a sql


Recommended Posts

holas es tarde y este script de la shit no me funca acepto sugerencias gracias =)

 

<?php

 

 

$NOMBRE= $_GET['NOMBRE'];

$PRECIO= $_GET['PRECIO'];

$DESCRIPCION= $_GET['DESCRIPCION'];

$PROVEEDOR= $_GET['PROVEEDOR'];

$ID_CATALOGO=$_GET['ID_CATALOGO'];

$ID_PRODUCTO=$_GET['ID_PRODUCTO'];

 

include("conec.php");

 

/*Guardamos en una variable el valor retornado de la funcion de conexion*/

$con=Conectarse();

 

/*Guardamos en una variable la sentencia SQL, en este caso del tipo SELECT*/

//$sql_select_1 = "select title, fname, lname from customer where fname ='$usuario' and lname='$pass'";

 

$sql_select_1 = " INSERT INTO `pacus_6506129_PROYECTO`.`PRODUCTOS` (`NOMBRE_PRODUCTO`, `PRECIO_PRODUCTO`, `DESCRIPCION_PRODUCTO_ `, `EMPRESA_PROVEEDOR`, `ID_PRODUCTO`, `ID_CATALOGO`) VALUES ('$NOMBRE','$PRECIO','$DESCRIPCION','$PROVEEDOR','$ID_PRODUCTO','$ID_CATALOGO');";

 

mysql_query($sql_select_1,$con);

 

 

echo "PRODUCTO Agregado<br>\n";

 

echo "<a href=\"REGISTRO_PRODUCTOS.html\"> regresar </a>";

 

?>

Link to comment
Share on other sites

  • 1 year later...

Socio aqui veo el problemas...

 

//$sql_select_1 = "select title, fname, lname from customer where fname ='$usuario' and lname='$pass'";

 

 

debe ser asi:

 

//$sql_select_1 = "select title, fname, lname from customer where fname ='".$usuario."' and lname='".$pass."'";

 

recuerda que debes concatenar lo que esta entre comillas, pones un punto y la variable, luego pones otro punto y abres comilla nuevamente..

 

espero te funcione..

 

Saludos.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...