Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript A Tiny bit of MySQL Help. Re: A Tiny bit of MySQL Help.

#74152
bi5on
Participant

$sql = "SELECT * FROM `jobs`
WHERE `sector` = '" . $sector . "'
AND `title` LIKE '%" . $title . "%'
AND `Sectors` LIKE '%" . $sectors. "%'
AND `Location` LIKE '%" . $location. "%'";

you might want to check the case of your `fields` and of your variables $Location $location etc.