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);
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);