Jump to content

search by price


john_tripod

Recommended Posts

[!--quoteo(post=377535:date=May 27 2006, 09:58 PM:name=john_tripod)--][div class=\'quotetop\']QUOTE(john_tripod @ May 27 2006, 09:58 PM) [snapback]377535[/snapback][/div][div class=\'quotemain\'][!--quotec--]
I've got a field in my database of car prices. I want to be able to search them from a drop down menu of price fields like £1000-£3000. How do I write the PHP for the form and the handler? Cheers

John
[/quote]

you can use query like this:

select * from cartable where price >= 1000 and price <= 3000;
or
select * from cartable where price between 1000 and 3000;

either of that would work, but prefer the first one.
Link to comment
https://forums.phpfreaks.com/topic/10570-search-by-price/#findComment-39420
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.