ファイルがアップロードされ、「att」という名前のフォルダーに保存されるファイルフィールドが1つあるフォームを1つ作成しました。コードは次のとおりです。
if($_FILES['file'] != '')
{
//Settings
$allowed_extensions = array("jpg", "jpeg", "gif", "bmp", "pdf", "docx","xlsx");
echo $upload_folder = './att/'; //<-- this folder must be writeable by the script
$errors ='';
//Get the uploaded file information
echo $name_of_uploaded_file = basename($_FILES['file']['name']);
//get the file extension of the file
$type_of_uploaded_file = substr($name_of_uploaded_file,
strrpos($name_of_uploaded_file, '.') + 1);
$size_of_uploaded_file = $_FILES["file"]["size"];
このコードは実行されますが、ファイルはフォルダーに表示されません。コードの問題は何ですか