pouncer Posted January 22, 2007 Share Posted January 22, 2007 [code=php:0]<?php $file_dir = "c:/domains/interzurf.nl/wwwroot/socialnetworking"; foreach($_FILES as $file_name => $file_array) { echo "path: " . $file_array['tmp_name'] . "<br>\n"; echo "name: " . $file_array['name'] . "<br>\n"; echo "size: " . $file_array['type'] . "<br>\n"; echo "type: " . $file_array['size'] . "<br>\n"; if (is_uploaded_file($file_array['tmp_name'])) { move_uploaded_file($file_array['tmp_name'], "$file_dir/$file_array[name]") or die("Couldnt copy"); echo "file was moved<br><br>"; } }?>[/code]And this is the html...[code]<html><head><title>A simple file upload form</title></head><body><form action="profile_image_upload.php" enctype="multipart/form-data" method="post"><input type="hidden" name="MAX_FILE_SIZE" value="200000" /><p><strong>File to upload:</strong> <input type="file" name="fileupload"></p><p><input type="submit" value="upload!"></p></form></body></html>[/code]Problem is when i upload i get this:path: C:\PHP4\uploadtemp\php73AE.tmpname: image.JPGsize: image/pjpegtype: 129022Warning: move_uploaded_file(c:/domains/interzurf.nl/wwwroot/socialnetworking/image.JPG) [function.move-uploaded-file]: failed to open stream: No such file or directory in c:\domains\interzurf.nl\wwwroot\socialnetwork\profile_image_upload.php on line 11Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move 'C:\PHP4\uploadtemp\php73AE.tmp' to 'c:/domains/interzurf.nl/wwwroot/socialnetworking/image.JPG' in c:\domains\interzurf.nl\wwwroot\socialnetwork\profile_image_upload.php on line 11Couldnt copyHope someone can help me out please, thanksedit: line 11 is the 'move_uploaded_file' line Quote Link to comment Share on other sites More sharing options...
Nelak Posted January 23, 2007 Share Posted January 23, 2007 its throwing an error because it cant find the folder to upload to correctly, make sure the path is correct and u have permission to write to it, also u are echoing the size as the file type and the type as size Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.