For example:
if I have this query: SELECT * FROM table WHERE test = ?
then I bind a parameter, can I now add something to my query?
If this is possible please give me an example in PHP.
For example:
if I have this query: SELECT * FROM table WHERE test = ?
then I bind a parameter, can I now add something to my query?
If this is possible please give me an example in PHP.
No, it's not possible. You'll have to prepare a new query.
No it isn't possible. What do you need?