Jump to content
  • 0

Не загружаются файлы на сервер PHP, Срочно!


Jey Val Star
 Share

Question

Здравствуйте.

Никак не могу разобраться в чем проблема - пытаюсь загрузить файл на сервер (локально, denwer)? но никак

if($_FILES['uploadfile']['name'] != '')    {        $folder = 'images/';        // Получаем расширение файла        $file_ext =  strtolower(strrchr($_FILES['uploadfile']['name'],'.'));        // Генерируем случайное число               $file_name = $post_data['login'];        // Формируем путь на сервере        $uploaded_file  = $folder.$file_name.$file_ext;                if(is_uploaded_file($_FILES['uploadfile']['tmp_name']))        {            if(move_uploaded_file($_FILES['uploadfile']['tmp_name'], $uploaded_file))            {                 $post_data['file'] = $file_name.$file_ext;            }        }        else $error['file'] = 'Ошибка загрузки файла' . $_FILES['uploadfile']['error'];        print_r($_FILES);    }    else    {        $error['file'] = 'Ошибка загрузки файла - названия нет'; // установил для отладки        print_r($_FILES);    }

Постоянно выдает "Ошибка загрузки файла - названия нет"

print_r($_FILES); выдает следующее

Array (     [photo] => Array (             [name] => 10-s.jpg             [type] => image/jpeg             [tmp_name] => Z:\tmp\php917F.tmp             [error] => 0             [size] => 15128 ))

Пожалуйста помогите!!!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

И что делать? Куда копать?

На сервер перенес - тоже не работает...(


Прошу прощения, все заработало - это я тормоз не правильно назвал input (или масив $_FILES['uploadfile'])

Имена должны совпадать  

<input type="file" name="photo"> 
$_FILES['photo'] 

Если в одном 'photo' то и в другом тоже должно быть 'photo'

(это для всех новичков которые могут также попасться)

Всем спасибо))) 

Edited by Jey Val Star
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy