Всем привет, не могу понять, что делаю не так, почему-то ничего не приходит в $_FILE, точнее его просто нет. Прошу помощи
<!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">
<title>Import CSV</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-md-6">
<form action="handler.php" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="csv_file">Upload your CSV File</label>
<input type="file" name="csv_file" id="csv_file">
</div>
<div class="form-group">
<input type="text" name="name" class="form-control">
</div>
<button type="submit" class="btn btn-primary">Import</button>
</form>
<div id="result_import"></div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>