select * from table where keywords like '%$searchword%'
will return a match if the $searchword variable exists in the field with anything preceeding or following it.
select * from table where keywords like '$searchword%'
would return a match if the keyword field begins with the $searchword variable and ends with anything.