The keyword is automatically passed into the query. Suppose the keyword passed is 'Database Manager', now I want to display all results containing 'database'. i.e, it should query the first word of the two-letter keyword. Any help is much appreciated. Thanks. This is my query right now:
$jobQuerySqlStmt .= "
Select *
from job
WHERE specialization LIKE '$" . $this->paraValues[$std1->JOB_TABLE_SPECIALIZATION] . "%'";
I want the first word of $this->paraValues[$std1->JOB_TABLE_SPECIALIZATION]
to be searched for, only.