Jump to content

[SOLVED] A simple questions... Is this that I have done right


npsari

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.