I am attempting to use the following code to search a database using words in a search field.
For some reason I am getting the following error
Warning: PDOStatement::bindValue() [pdostatement.bindvalue]:
SQLSTATE[HY093]: Invalid parameter number: Columns/Parameters are
1-based in..
Here is the function code:
// Retrieve search results
function retrieve_search_posts($searchfield){
//test the connection
try{
//connect to the database
$dbh = new PDO("mysql:host=localhost;dbname=mjbox","root", "usbw");
//if there is an error catch it here
} catch( PDOException $e ) {
//display the error
echo $e->getMessage();
}
$where = array();
$words = preg_split('/[\s]+/',$searchfield);
$total_words = count($searchfield);
for($i = 0; $i < count($words); $i++){
$where[] .= "`post_title` LIKE ?";
}
$where_string = implode(" OR ", $where);
$query = "
SELECT p.post_id, post_year, post_desc, post_title, post_date, img_file_name, p.cat_id
FROM mjbox_posts p
JOIN mjbox_images i
ON i.post_id = p.post_id
AND i.cat_id = p.cat_id
AND i.img_is_thumb = 1
AND post_active = 1
WHERE post_title LIKE ?
ORDER BY post_date
DESC";
$stmt = $dbh->prepare($query);
foreach($words AS $index => $word){
$stmt->bindValue($index, $word, PDO::PARAM_STR);
}
$stmt->execute();
$searcharray = $stmt->fetchAll(PDO::FETCH_ASSOC);
return $searcharray;
}
What have I done wrong to cause the outputted error message?
Firstly, you didn’t use the string of
...OR LIKEclauses you carefully constructed in the loop.Secondly, as the error says, prepared statement parameters are 1-indexed, whereas your array is 0-indexed. You need to shift all the indexes in the array up 1 in order to get it to work with your current
foreach, or add 1 to them during the loop.Try this instead: