Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active June 24, 2020 04:55
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/42e8b13bc4edd236d8d1876c9ff1fa60 to your computer and use it in GitHub Desktop.
Save parzibyte/42e8b13bc4edd236d8d1876c9ff1fa60 to your computer and use it in GitHub Desktop.
<?php
# El límite es el número de productos por página
$limit = $productosPorPagina;
# El offset es saltar X productos que viene dado por multiplicar la página - 1 * los productos por página
$offset = ($pagina - 1) * $productosPorPagina;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment