Here\'s my attempt at it:
$query = $database->prepare(\'SELECT * FROM table WHERE column LIKE \"?%\"\'); $query->execute(array(\'value\')); while ($r
This works:
search `table` where `column` like concat('%', :column, '%')