Bạn đang xem bản rút gọn của tài liệu. Xem và tải ngay bản đầy đủ của tài liệu tại đây (107.3 KB, 1 trang )
Đoạn code để Upload nhieu file trong PHP
Xin giới thiệu với các bạn đoạn Code để Upload nhieu file trong PHP:
PHP Code:
<?php
$numoffile = 5;
$file_dir = ''/ subdomain/files/''; // Tên đường dẫn thư mục chứa file upload
if ($_POST) {
for ($i=0;$i<$numoffile;$i++) {
if (trim($_FILES['myfiles']['name'][$i])!='''') {
$newfile = $file_dir.$_FILES['myfiles']['name'][$i];
move_uploaded_file($_FILES['myfiles']['tmp_name'][$i], $newfile);
$j++;
}
}
}
if (isset($j)&&$j>
0) print ''Tập tin đã được upload.<br>'';
print ''<form method='post' enctype='multipart/form-data'>'';
for($i=0;$i<$numoffile;$i++) {
print ''<input type='file' name='myfiles[]' size='30'><br>'';
}
print ''<input type='submit' name='action' value='Upload'>'';
print ''</form>'';
?>
Nguồn : PHP manual
Posted by vns3curity(HCE)