if ((!$_GET['month']) && (!$_GET['year'])) {
$month = date ("n");
$year = date ("Y");
} else {
$month = $_GET['month'];
$year = $_GET['year'];
}
それは示していますNotice: Undefined index: month in....
。
error_reporting(null);
上記のコードを使用すると、通知が表示されないことはわかっていますが、このエラーを修正する方法はありますか?