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 Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/10570-search-by-price/#findComment-39420 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.