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 Link to comment https://forums.phpfreaks.com/topic/46167-solved-a-simple-questions-is-this-that-i-have-done-right/ 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 Link to comment https://forums.phpfreaks.com/topic/46167-solved-a-simple-questions-is-this-that-i-have-done-right/#findComment-224405 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 Link to comment https://forums.phpfreaks.com/topic/46167-solved-a-simple-questions-is-this-that-i-have-done-right/#findComment-224415 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.