Znaczniki parametrów muszą być powiązane ze zmiennymi aplikacji za pomocą mysqli_stmt_bind_param() i/lub mysqli_stmt_bind_result() przed wykonaniem instrukcji lub pobraniem wierszy.
tj.:
$name = 'one';
$age = 1;
$stmt = $mysqli->prepare("INSERT INTO users (name, age) VALUES (?,?)");
// bind parameters. I'm guessing 'string' & 'integer', but read documentation.
$stmt->bind_param('si', $name, $age);
// *now* we can execute
$stmt->execute();