檔案分為兩部分html和php部分
html部分就不詳細說明了
內容1:td
>
width
="369px"
>
name
="picture"
type
="file"
id="picture"
size
="30"
>
td>
tr>
>
width
="88px"
height
="30px"
align
="right"
class
="style1"
>
內容2:td
>
width
="369px"
>
name
="picture"
type
="file"
id="picture"
size
="30"
>
td>
tr>
>
width
="88px"
height
="30px"
align
="right"
class
="style1"
>
內容3:td
>
width
="369px"
>
name
="picture"
type
="file"
id="picture"
size
="30"
>
td>
tr>
>
width
="88px"
height
="30px"
align
="right"
class
="style1"
>
內容4:td
>
width
="369px"
>
name
="picture"
type
="file"
id="picture"
size
="30"
>
td>
tr>
>
width
="88px"
height
="30px"
align
="right"
class
="style1"
>
內容5:td
>
width
="369px"
>
name
="picture"
type
="file"
id="picture"
size
="30"
>
td>
tr>
>
colspan
="2"
align
="center"
>
type
="submit"
name
="submit"
value
="提交"
/>
td> tr
>
form
>
table
>
body
>
html
>
下面是php部份uploadok.php
<?phpif(
!is_dir
("./upfile"))
array_push
($_files
['picture'][
'name'],
'');//建立檔案陣列,以在末尾新增乙個空白形成陣列
$array
=array_unique
($_files
['picture'][
'name'])
;//去掉重複
array_pop
($array);
//再去掉末尾的空白陣列值
for($i=
0;$i<
count
($array);
$i++
)else
}else
}?>
結尾:有個bug,如果上傳乙個檔案時只能用第乙個,用第二個或其它的會報檔案格式不正確,這就是bug出錯,
多檔案上傳是正常
php多檔案上傳
多檔案上載系統完整版 include include common.inc title 多個檔案的上載程式 include include header.inc 定義允許上載檔案的數目 define upload no 10 echo 歡迎您!一次可以最多上載 upload no.個檔案 n if ...
php 多檔案上傳
這個是對單檔案上傳的補充,只要是讓大家知道有這麼回事 沒有對安全等考慮的很全面,請大家修正,謝謝 單檔案index.php 當需要上傳二進位制檔案時,記得 enctype multipart form data var dump files 現在的 files只有乙個索引,就是 files arra...
PHP實現多檔案上傳
php實現多檔案上傳,與單檔案上傳絕大部分是相同的,不過還是有區分的地方,主要有三點 一 前端頁面 可以出現多個檔案瀏覽按鈕,也可以設定檔案瀏覽按鈕可以選擇多個檔案。需要注意的是檔案瀏覽按鈕的名字是陣列,因為要求上傳多個檔案。二 如果上傳的是多個檔案,通過 files獲得的陣列是三維陣列 如果上傳的...