i have a problem to create a multiple search page, for ur all info. i want to create the search page like this...
i want to search the data from table car
n i can search by select the car make, car year, and car price
n for car price, i divide it into 5 categories
ANY = BETWEEN 1 AND 250000
under 20000 = BETWEEN 1 AND 19999
20000-50000 = BETWEEN 20000 AND 49999
50000-100000 = BETWEEN 50000 AND 99999
ABOVE 100000 = BETWEEN 100000 AND 250000
n this is my SQL that i create b4
SELECT *
FROM Car
WHERE Price MMColParam AND Make = 'Make' AND Year = 'Car_Year'
ORDER BY Price ASC
any solution 4 this problem...