This is really a dumb question from a beginner, I have a table called "stations" inside my database and on it I have a column called "keywords". I need to retrieve all those rows that contain one specific keyword (let's say "pizza"). I tried with this but it didn't work:
foreach ($stations->result() as $row)
{
foreach ($row->keywords as 'pizza')
{
<--my code-->
}
}
How could I retrieve all rows that contain "pizza" inside a specific column using PHP?