npsari Posted April 8, 2007 Share Posted April 8, 2007 mysql_select_db(flat); $q = "SELECT * FROM rent WHERE Price=<200 ORDER BY Price DESC LIMIT 10000;"; Reefering to my above code.... Is what I done right? Price=<200 Will that work, cus I want to show all Prices less than 200 Quote Link to comment Share on other sites More sharing options...
metrostars Posted April 8, 2007 Share Posted April 8, 2007 mysql_select_db(quickfla_find); $q = "SELECT * FROM rent WHERE Price <= '200' ORDER BY Price DESC LIMIT 0, 10000"; that one Quote Link to comment Share on other sites More sharing options...
npsari Posted April 8, 2007 Author Share Posted April 8, 2007 Yes, but a user will select from a Combobox <select name="Price" size="1"> <option value="<200">Less than 200</option> <option value="<300">Less than 300</option> <option value="<400">Less than 400 </option> <option value="<500">Less than 400</option> <option value="<600">Less than 600</option> <option value="<700">Less than 700</option> <option value="<800">Less than 800</option> <option value="<900">Less than 900</option> <option>More than 1000 / Month</option> </select> And the PHP code is... mysql_select_db(flat); $q = "SELECT * FROM rent WHERE Price='$Price' ORDER BY Price DESC LIMIT 10000;"; And I am giving the values of Price to be <200 ... <300... <4000 ... etc Quote Link to comment 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.