私はPHPを初めて使用します。
誰かがアップロードするファイルサイズが大きすぎる場合、警告ポップアップを表示して前のページにリダイレクトしたいと思います(またはその逆)。
if(file size is too big){
ob_start();
header("location:index.php");
echo "<script type='text/javascript'>alert('Your File Size is too big!');</script>";
ob_end_flush();
exit;
}
上記のこのコードは、index.phpにリダイレクトするだけで、警告ポップアップは表示されません。