私はエラーを見ていないので、誰かがそれを理解できることを望んでいました:
public static function createMessage($title, $message, $startDate, $endDate, $author, $status){
//$dbConn is now a mysqli instance with a connection to the database foobar
$dbConn = Database::getConnection("foobar");
$stmt = $dbConn->prepare("INSERT into messages(title, msg, date_start, date_end, app_usersID_FK, date_created, activeflag, msg_status) VALUES (?,?,?,?,?,?,?,?)");
if(!$stmt){
throw new Exception("Unable to prepare the statement");
}
$dt = date("Y-m-d");
$stmt->bind_param("ssssisii", $title, $message, $startDate, $endDate, $author, $dt, 1, $status);
$stmt->execute();
return true;
}
関数呼び出し
MessageCenter::createMessage("こんにちは", "こんにちはと言うために電話しています", "2009-09-12", "2009-09-12", "1", "1");
エラーメッセージは次のとおりです。
致命的なエラー: パラメータ 8 を参照渡しできません