One thing though i want to add 2 more drop down fields to narrow there search ALONG with the keyword, the below works. But i also want to give them the option of choosing a keyword and region or region and job_sector or just by job sector etc. What do i need to do that with the statement below?
$query = "SELECT * FROM $table_name WHERE (job_summary LIKE '%$keyword%' OR job_title LIKE '%$keyword%') AND job_sector = '$POST[job_sector]' AND region = '$POST[region]';";
Is it possible to use AND OR operators togather? that will solve this problem?