What is the difference between bindParam and bindValue for PDO in PHP?
|
|
The answer is in the documentation for
|
||
|
|
|
Here are some I can think about :
With some DB engines, stored procedures can have parameters that can be used for both input (giving a value from PHP to the procedure) and ouput (returning a value from the stored proc to PHP) ; to bind those parameters, you've got to use bindParam, and not bindValue. |
||||
|
