Код (Text): <?php error_reporting(-1); var_dump($_FILES); if(!empty($_FILES)){ echo '<pre>'; print_r($_FILES); echo '</pre>'; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <form action="index.php" method="post" enctype="multipart/form-data"> <p><input type="file" name"file"></p> <p><button type="submit">Send</button></p> </form> </body> </html> При отправлении формы массив остается пустым, в чем ошибка не понимаю, помогите пожалуйста.