これが正しく機能しない理由がわかりません。設定される変数は次のとおりですが、「type」の最終結果では、fm ではなく m に設定されます。
cpanel_notifications - 1
remote_server - 1
if ($_POST['cpanel_notifications'] == 1){
$type = "m";
}
elseif($_POST['cpanel_notifications'] == 0){
$type = "nm";
}
elseif($_POST['cpanel_notifications'] == 1 && $_POST['remote_server'] == 1){
$type = "fm";
}
elseif($_POST['cpanel_notifications'] == 0 && $_POST['remote_server'] == 0){
$type = "fnm";
}
結果:分