I wonder if I still need question mark if I don't want to specify any row. Because bind_param
needs it.
$zr="0";
$stmt=$mysqli->prepare("select * from products_db where not prd_id=?");
$stmt->bind_param("i",$zr);//can I skip this line or what?
I search everywhere but there's no such a thing. Once I tried without ?
it errors without reason. I might be typo error, something?