fluentpdo
fluentpdo copied to clipboard
The fluent PDO passes parameters by "prepare" and "bindValue" to avoid sql injection?
Are you asking if Fluent uses prepared statements? If that is the question: Yes, all queries and parameters are run through prepare()
before being executed.
yes, and would that eliminate SQL injection?