nick-harper
07-03-10, 22:54
I want to do a search for football boots, so I use this:
$footballboots = 'Football Boot';
$aParams7 = array("sQuery" => $footballboots, "iLimit"=>100, "bAdult" => False, "sSort" => "relevancy");
$search = $oClient->call('getProductList', $aParams7);
This gets me the same 58 results every time, how would I go about mixing it up a bit and getting some different ones?
I have tried:
$footballboots = 'Football Boot';
$aParams7 = array("sQuery" => $footballboots, "iLimit"=>100, "bAdult" => False, "sSort" => "random");
$search = $oClient->call('getProductList', $aParams7);
But this doesn't work?
Are there really only 58 results?
Thanks
$footballboots = 'Football Boot';
$aParams7 = array("sQuery" => $footballboots, "iLimit"=>100, "bAdult" => False, "sSort" => "relevancy");
$search = $oClient->call('getProductList', $aParams7);
This gets me the same 58 results every time, how would I go about mixing it up a bit and getting some different ones?
I have tried:
$footballboots = 'Football Boot';
$aParams7 = array("sQuery" => $footballboots, "iLimit"=>100, "bAdult" => False, "sSort" => "random");
$search = $oClient->call('getProductList', $aParams7);
But this doesn't work?
Are there really only 58 results?
Thanks