The ? is a placeholder; whenever you bind data in a Query, it will be parameterized (which helps save you from SQL injection vulnerabilities). Take a look at the PDO docs to understand what is happening.
I'm getting much more queries from the application with this ' ? ' in column value field. this makes the db server unstable and cpu load goes very high. for example: select * from users where mobile = ? limit 1
Is this my application issue or i'm getting unwanted traffic?
@tisuchi sir, I'm getting much more queries from the application with this ' ? ' in column value field. this makes the db server unstable and cpu load goes very high. for example: select * from users where mobile = ? limit 1
Is this my application issue or i'm getting unwanted traffic?