Advertisement
michaelyuen

Untitled

Aug 3rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function getAllMerchants($start, $limit = 100) {
  2. // your script
  3. }
  4.  
  5. $start = 0;
  6. $limit = 100;
  7.  
  8. if (ISSET($_POST['start'])) {
  9.     $start = $_POST['start'];
  10. }
  11.  
  12. if (ISSET($_POST['limit'])) {
  13.     $limit = $_POST['start'];
  14. }
  15.  
  16. getAllMerchants($start, $limit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement