Код: Выделить всё
if (!empty($_FILES['file2'])) {
$files = true;
// Handle the file uploads
$files2 = $_FILES['file2'];
$maxFileSize = 500 * 1024 * 1024; // 500 MB in bytes
foreach ($files2['name'] as $key2 => $value2) {
if ($files2['error'][$key2] == UPLOAD_ERR_OK) {
if ($files2['size'][$key2] getMessage();
}
Подробнее здесь: https://stackoverflow.com/questions/786 ... alh-but-on