Guest User

Untitled

a guest
Oct 16th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $id = $_GET[ "IdCliente" ];
  2. $nom = $_GET[ "Nombre" ];
  3. $ape = $_GET[ "Apellido" ];
  4. $idfactura = $_GET[ "IdFactura" ];
  5.  
  6.  
  7.  
  8. $consulta = "SELECT Idcliente, nombre, apellido, idfactura.factura
  9. WHERE Idcliente=:idcli, Nombre=:nomcli, Apellido=:apecli, Idfactura=:idfact"
  10.  
  11. $consulta = "SELECT
  12. clientes.Idcliente,
  13. clientes.nombre,
  14. clientes.apellido,
  15. factura.idfactura
  16. FROM clientes, factura
  17. WHERE clientes.Idcliente=:idcli
  18. AND factura.Idcliente=:idcli";
Add Comment
Please, Sign In to add comment