Here's my attempt at it:
$query = $database->prepare('SELECT * FROM table WHERE column LIKE "?%"');
$query->execute(array('value'));
while ($results = $query->fetch())
{
echo $results['column'];
}
|
feedback
|
|
Figured it out right after I posted:
| |||||||
feedback
|
|
To use Like with % partial matching you can also do this: @bobince mentions here that:
So that's something else to watch out for when combining like and parameterization. | ||||
|
feedback
|