john_tripod Posted May 27, 2006 Share Posted May 27, 2006 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? CheersJohn Link to comment https://forums.phpfreaks.com/topic/10570-search-by-price/ Share on other sites More sharing options...
hvle Posted May 27, 2006 Share Posted May 27, 2006 [!--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? CheersJohn[/quote]you can use query like this:select * from cartable where price >= 1000 and price <= 3000;orselect * 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.