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