Guest User

Untitled

a guest
Feb 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. #BUSCAR CAJA Y BOLSAS
  2. public function todoReporteModel($datos, $tabla){
  3. $stmt = Conexion::conectar() -> prepare("SELECT bolsa, caja FROM $tabla WHERE lote=:lotes");
  4. $stmt -> bindParam(":lotes", $datos["loteAll"], PDO::PARAM_INT);
  5. $stmt->execute();
  6. return $stmt -> fetchAll();
  7. $stmt->close();
  8. }
  9.  
  10. caja1=[1,2,3,40];
  11. caja2=[89,78,968,125,963];
  12. caja0=[10];
Add Comment
Please, Sign In to add comment