我想使用文件上傳進度。任何人都可以提供簡單的代碼 來顯示上傳過程欄。在下一個代碼。 有文件接收文件upload.php的php文件上傳帶有進度條或數量百分比
<?php
if ($_FILES) {
foreach ($_FILES as $k => $v) {
if ($v["error"] > 0) {
echo "Error: " . $_FILES["file"]["error"] . "<br>";
} else {
echo "Upload: " . $v["name"] . "<br>";
echo "Type: " . $v["type"] . "<br>";
echo "Size: " . ($v["size"]/1024) . " kB<br>";
echo "Stored in: " . $v["tmp_name"]. "<br><br>";
}
}
return;
}
?>
而且有文件上傳形式的HTML。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Upload</title>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label for="f1">Filename:</label>
<input type="file" name="f1" id="f1"><br>
<label for="f2">Filename:</label>
<input type="file" name="f2" id="f2"><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
謝謝
哪個php版本是你用的? – alwaysLearn 2013-05-14 08:39:44
也許你可以在JavaScript端處理它...查看http://stackoverflow.com/questions/15410265/file-upload-progress-bar-with-jquery – smarques 2013-05-14 08:44:49