Q1)
I have these values in a rent field in db:
1125 > 950
I want to display results by rent ASC so I'm using
$query="SELECT * FROM lets ORDER BY rent ASC";
but this puts the highest rent first, ie £1125
How can I make them display in the correct order?
Q2)
I have a sales table where by I want to display properties by price. So for example only display properties upto £250,000 etc.
What query could I use to acheive this?
Thanks in advance
Steve