Gossamer Forum
Home : Products : DBMan SQL : Discussion :

Price range mod ???

Quote Reply
Price range mod ???
Hi. is there anyone who is using price range mod in DBMan SQL? i've tried to use it (because i do need it!) but it didn't work.

Ý have a field as 'area'. in db.cgi, below

sub query {
# --------------------------------------------------------
# This routines does the actual search of the database.
#
my ($i, $column, @search_fields, @gt_fields, @lt_fields, $bool, $order, $sortby, $nh,
$where, $offset, $field, $field_q, $query, $userid_q, $sth, @tmp, @hits, $count, $comp);


i've added

$in{'area_range'} =~ s/,//g;
$in{'area_range'} =~ s/\+//g;
$in{'area_range'} =~ s/\$//g;
if ($in{'area_range'}) { @area = split /-/, $in{'area_range'};
$in{'area-gt'} = int($area[0]) - 1;
if ($area[1]) {
$in{'area-lt'} = int($area[1]) + 1;
}
}


but i am not sure if this is the right place. Then create a search form with

<SELECT NAME="area_range">
<option>50-100
<option>100-150
<option>150-200
<option>200+


then tried to search and got 0 matches. So i need your help

Best Regards





Subject Author Views Date
Thread Price range mod ??? JohnCage 2251 Dec 10, 2000, 11:13 AM
Thread Re: Price range mod ???
JohnCage 2174 Dec 10, 2000, 4:08 PM
Post Re: Price range mod ???
JohnCage 2152 Dec 12, 2000, 5:35 AM