Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 4, 2020 19:43
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/09b110b2917d344a9b67cc6397e2fbaa to your computer and use it in GitHub Desktop.
Save parzibyte/09b110b2917d344a9b67cc6397e2fbaa to your computer and use it in GitHub Desktop.
<?php
if(isset($_GET["limite"])){
$limite = $_GET["limite"];
}else if(isset($_POST["limite"])){
$limite = $_POST["limite"];
}else{
$limite = 10;
}
hacerConsultaDeUsuariosConLimite($limite);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment