0
我有這段代碼來上傳多個文件。PHP文件上傳腳本不上傳文件
我可以瀏覽和選擇文件,但無法上傳到指定的文件夾。
<span class="btn btn-primary btn-file">
Browse <input name="upload[]" type="file" multiple="multiple" />
</span>
<!-- processing the selected files -->
<?php
for($i=0; $i<count($_FILES['upload']['name']); $i++) {
//Get the temp file path
$tmpFilePath = $_FILES['upload']['tmp_name'][$i];
if ($tmpFilePath != ""){
//Setup our new file path
$newFilePath = "./uploadedFiles/" . $_FILES['upload']['name'][$i];
//move to new path
move_uploaded_file($tmpFilePath, $newFilePath) ;
}
}
?>
這裏有什麼問題?
你有一個形式..? –
你有沒有得到任何錯誤,他們是什麼等?粘貼代碼並詢問出了什麼問題不會得到多大幫助... – skywalker
我沒有收到任何錯誤。只是文件沒有上傳。 @skywalker –