Decipher19 Posted April 9, 2007 Share Posted April 9, 2007 Hi there, I have 4 file fields in my html form. However, the last image is only uploaded into the assigned directory. and the 1st 3 images was not. I have troubleshooted and found out that the last image is always saved. I'm not sure whether the images were overwritten but there were no errors at all as I have set a message saying "Image cannot be loaded". I am able to echo out the 4 image files but only the last one is always saved. //i have 4 of these <input type="file" name="uploadFile[]" id="uploadFile[]" /> $numoffile = 3; for($i=0; $i<=$numoffile; $i++) { $photo_name = $_FILES['uploadFile']['name'][$i]; $tmp_photo = $_FILES['uploadFile']['tmp_name'][$i]; //.....more.... } Link to comment https://forums.phpfreaks.com/topic/46302-multiple-file-upload-last-image-saved-1st-3-not/ Share on other sites More sharing options...
Wildbug Posted April 9, 2007 Share Posted April 9, 2007 Can you post the $_FILES portion of $_GLOBALS? Link to comment https://forums.phpfreaks.com/topic/46302-multiple-file-upload-last-image-saved-1st-3-not/#findComment-225263 Share on other sites More sharing options...
Decipher19 Posted April 9, 2007 Author Share Posted April 9, 2007 yes i can, I have tried it with a single file upload. It seems that my images uploaded are overwritten by the next, the code works fine.:/ Link to comment https://forums.phpfreaks.com/topic/46302-multiple-file-upload-last-image-saved-1st-3-not/#findComment-225273 Share on other sites More sharing options...
Decipher19 Posted April 9, 2007 Author Share Posted April 9, 2007 In addition, the file names are totally different. I have no idea why its being overwritten. Link to comment https://forums.phpfreaks.com/topic/46302-multiple-file-upload-last-image-saved-1st-3-not/#findComment-225274 Share on other sites More sharing options...
Decipher19 Posted April 9, 2007 Author Share Posted April 9, 2007 sry i have solved the problem, THKS! Link to comment https://forums.phpfreaks.com/topic/46302-multiple-file-upload-last-image-saved-1st-3-not/#findComment-225286 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.