You are here:  » min and Max Price Help

Support Forum



min and Max Price Help

Submitted by Stew on Fri, 2010-07-16 02:26 in

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

Submitted by support on Fri, 2010-07-16 07:59

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.

Submitted by Stew on Mon, 2010-07-26 03:28

Bingo, much thanks!