min and Max Price Help
Submitted by Stew on Fri, 2010-07-16 02:26.Price Tapestry
Hi,
Apologies for such a noobie question, but how do I add the min and max price parameters?
Search working great, just need the sorting added.
I have the following code:
<?php
$external_baseHREF = "http://www.clients.eirestudio.net/.../";
$external_path = ".../";
$_GET["q"] = '...';
require($external_path."external.php");
?>Cheers
Hi Stew,
Use something like;
<?php$external_baseHREF = "http://www.clients.eirestudio.net/.../";
$external_path = ".../";
$_GET["q"] = '...';
$_GET["minPrice"] = "100.00";
$_GET["maxPrice"] = "999.99";
require($external_path."external.php");
?>
Cheers,
David.