<?php
if (!isset($_POST['submit']))
header("location : Manage.php?Excel=0&Description=فایل اکسل انتخاب نشده است");
$Fname = basename($_FILES['ExcelFile']['name']);
$tmp = explode('.', $Fname);
$Paswand = end($tmp);
if ($Paswand != "xlsx")
header("location : Manage.php?Excel=0&Description=پسوند انتخابی اشتباه است.");
$File = "File/Excel.$Paswand";
if (!is_dir("File"))
mkdir("File");
if (move_uploaded_file($_FILES["ExcelFile"]["tmp_name"], $File)) {
header("location : Manage.php?Excel=1&File=$File") or die();
} else {
header("location : Manage.php?Excel=0&Description=" . $_FILES['Fish']['error']);
}
перенаправление заголовка не работает, и страница возвращает 500 ошибка сервера, эта ошибка возникает при использовании xampp php
пожалуйста, healp:)