Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 12, 2019 21:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/ea4fb11a7397a16a82ea094592b286c4 to your computer and use it in GitHub Desktop.
Save parzibyte/ea4fb11a7397a16a82ea094592b286c4 to your computer and use it in GitHub Desktop.
<?php
$consulta = "select codigo, descripcion, precioCompra, precioVenta, existencia from productos";
$sentencia = $bd->prepare($consulta, [
PDO::ATTR_CURSOR => PDO::CURSOR_SCROLL,
]);
$sentencia->execute();
# Comenzamos en la 2 porque la 1 es del encabezado
$numeroDeFila = 2;
while ($producto = $sentencia->fetchObject()) {
# Trabajar con $producto aquí :^)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment