How to bind SQL variables in Php? I want to bind variables instead of just building SQL strings. Anyway to do this in Php?
either MySQL or PostgreSQL answers would help.
Thanks
|
How to bind SQL variables in Php? I want to bind variables instead of just building SQL strings. Anyway to do this in Php? either MySQL or PostgreSQL answers would help. Thanks |
|||||
|
|
There's e.g. PDO. |
|||
|
|
|
There are a couple of flavors. I believe the more savvy individuals here will push for you to use PDO prepared statements. There is also a sprintf() version. PDOAn answer has already been discussed on StackOverflow here. SPRINTF
|
|||
|
|
You should read on the MySQL Improved Extension (MySQLi) at http://php.net/manual/en/book.mysqli.php , and on prepared statements |
|||
|
|
|
For Postgres specifically - And then there's PDO but the others already mentioned it. |
||||
|
|