i need some help to search property searching like on
what i am unaware of is that how would i send the query to the next page? eg my query is like this
$query = select * from xyz where city='a' and location='b' and price between 'c' and 'd' and area between 'e' and 'f' and bedrooms='g' and addedwithin 'h';
considering this query on the basis of form on the above mentioned website, what should be the scenario for searching property listings.
Also how should i get this query again when i use paging with this page. should it be like this
<a href="<?php echo $_SERVER['PHP_SELF'] . '?q=' . $query; ?>" > nextpage </a>
or is there any other simpler solution?
Thanks