Hi All,
I'm working on this job board system and having trouble with the search facility.
In a table each job listed one vacancy per row. There is about 25 columns in the row like: job description, job title, skills required, location, job id, ... I'm trying to make search that will search about in 8 columns. So far I have managed to search only from two columns. My query string:
SELECT * FROM jobs WHERE jobdesc OR position LIKE '%".$q."%' ORDER BY id_internal DESC
Attempts to add more columns ware unsuccessful.
Any ideas ?
Cheers
Max