Well, you can do a full database search using keywords. You would do this with queries.
something like “SELECT * from Properties WHERE Rooms=3 AND Area > 3acres”…
Of course, this is just a sample. Here is a site that lays out the idea for a database search.
Might help: http://www.emirplicanic.com/php/php-mysql-search-script
There are so many ways to do searches on a database. The main problem is WHAT do you want to search and WHAT are you searching for. Before you can code, you need to make a plan.
- Make a list of your database fields that you need to search.
- Under each field, list samples of what you want to look for in these fields.
- Next to these samples, list how you want to allow the user to enter the search criteria
- Now, you can start your coding, first creating your user-input fields (drop-downs, text fields)
- With the user-inputs set up, you can program how each input is used to search the DB with.
Okay, now you have the general layout of your project, step by step. Start it off and when you are stuck come back and ask your next help question… Good luck…