ey] == '') {
$error_occured = true;
$message .= "${key}は必須項目です。
\n";
}
}
if (CAPTCHA_PARAMETER != '' && (!isset($_SESSION['captcha_keystring']) || ($_SESSION['captcha_keystring'] != $params[CAPTCHA_PARAMETER]))) {
$error_occured = true;
$message .= "画像認証が正しくありません。
\n";
}
if ($error_occured) {
show_error($message);
}
}
?>