Hello!
I have a problem, do not want to get the file from the temporary folder ... This error occurs:
Warning: move_uploaded_file(/img/avatar/DSC00693.JPG) [function.move-uploaded-file]: failed to open stream: No such file or directory in /home/u141735831/public_html/edit_photo.php on line 9
Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '/tmp/phpM8N5wQ' to '/img/avatar/DSC00693.JPG' in /home/u141735831/public_html/edit_photo.php on line 9
Here is the handler code:
<?php $uploads_dir = '/img/avatar'; $tmp_name = $_FILES["filename"]["tmp_name"]; $name = $_FILES["filename"]["name"]; move_uploaded_file($tmp_name, "$uploads_dir/$name"); ?>