PHP 8.5.0 Beta 1 available for testing

Voting

: two plus two?
(Example: nine)

The Note You're Voting On

Marek
20 years ago
Use this example for IBM DB/2:

$q = "update TABLE set PASS=? where NAME=?";
$res = odbc_prepare ($con, $q);

$a = "secret"; $b="user";
$exc = odbc_execute($res, array($a, $b));

<< Back to user notes page

To Top