This is my SQL table
when I try to fetch record with PDO using this mysqli query:
SELECT * FROM `TABLE 1` WHERE `tags` = ? LIMIT 25
? is replaced by a $_GET variable.
so for example i want to get results for this query:
SELECT * FROM `TABLE 1` WHERE `tags` = 'a' LIMIT 25
it will load and for other parameters, it does not load. but when I run a sql query in phpmyadmin the query loads without error(Always)! Can someone help me to understand why it is happening?