When I call stored procedure with out parameter on server tab of insert button functionality. Can Anybody help me in that.
My code is :
CustomQuery("CALL storeprocedure('" . $params["field1"] . "', '" . $params["field2"] . "', @Details );");
$rs = CustomQuery("SELECT @Details as _p_out;");
$row = mysqli_fetch_assoc($rs);
echo $row['_p_out'];
When I hit this on browser I am getting the above error. Can anyone please help me in this. Due to this I am stuck in my work.