2013-08-06 62 views
1

我想打一個PHP上傳腳本,需要兩個文件通過形式上傳使用PHP到不同的文件夾

形式

形式的圖像的多個文件不同的文件夾,如上傳文件1到文件夾1和文件2到文件夾2。

身體能幫助嗎?

+2

你試過什麼嗎? – 2013-08-06 12:37:57

+0

這個網站不是爲了hel但要回答問題。你有什麼? –

+0

只需使用兩種不同的形式? –

回答

0

使用兩個文件字段創建表單。獲取PHP中的字段,然後保存文件。

看看:

http://php.net/manual/en/features.file-upload.php

+0

感謝您的回覆。我已經嘗試過,但它將文件上傳到同一個文件夾。我想將它們上傳到不同的文件夾。 –

1

你不夠努力擾亂我。

退房this你然後就可以將您的文件你喜歡的地方(爲您提供正確的權限

0

試試這個

<form action="multiple_upload_ac.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> 

    <input name="ufile[]" type="file" id="ufile[]" size="50" /> 
    <input name="ufile[]" type="file" id="ufile[]" size="50" /> 

PHP代碼

$path1= "upload/".$HTTP_POST_FILES['ufile']['name'][0]; 
$path2= "sample/".$HTTP_POST_FILES['ufile']['name'][1]; 


//copy file to where you want to store file 
copy($HTTP_POST_FILES['ufile']['tmp_name'][0], $path1); 
copy($HTTP_POST_FILES['ufile']['tmp_name'][1], $path2); 
相關問題