PHP:
WHERE
story.`title` LIKE '%$search%'
OR
story.`author` LIKE '%$search%'
OR
story.`poster` LIKE '%$search%'
OR
story.`body` LIKE '%$search%'
This is the end of my sql script for a search, now it only does the last one and not all of them so the results are only what it finds in the body and nothing else. How do i make the results work thoughout?