Semantics3 / semantics3-php

DEPRECATED PHP library bindings for the Semantics3 APIs
MIT License
24 stars 21 forks source link

Seem Pagination param does not work #5

Closed ducnguyenhuy-agilityio closed 10 years ago

ducnguyenhuy-agilityio commented 10 years ago

Please take a look at code below:

/* Build the query */ $requestor->products_field("cat_id", 4992); $requestor->products_field("brand", "Toshiba"); $requestor->limit(2);

/* Execute the query */ $results = $requestor->iterate_products();

echo $results; // Show 0 here

The results are there if I don't add limit param. Could you tell me what's wrong?