Here is my sql statement
SELECT ID, post_title, post_name, post_type
FROM `wp_posts`
WHERE `post_type` LIKE 'ep_e%'
I ran this sql statement in phpMyAdmin, works perfectly and returns 106 rows (probably not important here)
But within php I run this query with a database class and I get an error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near "ep_e%"
I have tried interpolation also and still get an error :(
$evt = 'ep_event';
SELECT ID, post_title, post_name, post_type
FROM `wp_posts`
WHERE `post_type` like '{$evt}'
I'm really stumped here :-/ and thanks in advance.
Here is the function from my class
protected function _prepareQuery()
{
if (!$stmt = $this->_mysqli->prepare($this->_query)) {
trigger_error("Problem preparing query ($this->_query) " .
$this->_mysqli->error, E_USER_ERROR);
}
return $stmt;
}
ep_e%, but the mysql error showsep_%? Sure you're looking at the right stuff? – Marc B Sep 30 '11 at 20:40