PHP 8.5.0 Alpha 2 available for testing

Voting

: eight plus zero?
(Example: nine)

The Note You're Voting On

c at zp1 dot net
3 years ago
It is very important to understand that you can not supply bind_param values

this will not work:

$stmt -> bind_param("s", "value");


you have to do it like this :

$var = "value";
$stmt -> bind_param("s", $var);

<< Back to user notes page

To Top