Add post max size

This commit is contained in:
ChillerDragon 2021-07-01 12:33:01 +02:00
parent a12be58ec4
commit 3a53427586

View file

@ -26,6 +26,7 @@ function verbose_error() {
echo 'A php.ini file is not loaded<br>';
}
echo 'upload_max_filesize: ' . ini_get('upload_max_filesize') . '<br>';
echo 'post_max_size: ' . ini_get('post_max_size') . '<br>';
print_r($_FILES['file']);
echo '</code>';
}