leonphp Posted October 31, 2008 Share Posted October 31, 2008 I have this code that used to work. But it doesnt work no more.... anyone has the answer? #copy images $uploadfolder="/pacotes/"; #file1 $uploadedfile=$_FILES['file1']['tmp_name']; $finalfile=$_SERVER['DOCUMENT_ROOT'].$uploadfolder.$id."_big.jpg"; if(!copy($uploadedfile,$finalfile)) echo "erro no upload do ficheiro 1"; #file2 $uploadedfile=$_FILES['file2']['tmp_name']; $finalfile=$_SERVER['DOCUMENT_ROOT'].$uploadfolder.$id.".jpg"; if(!copy($uploadedfile,$finalfile)) echo "erro no upload do ficheiro 2"; #file3 $uploadedfile=$_FILES['file3']['tmp_name']; $finalfile=$_SERVER['DOCUMENT_ROOT'].$uploadfolder.$id."_hover.jpg"; if(!copy($uploadedfile,$finalfile)) echo "erro no upload do ficheiro 3"; Quote Link to comment https://forums.phpfreaks.com/topic/130930-uploadfiles/ 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.