開發一個文件上傳共享網站,曾想使用下面的代碼實現文件上傳的功能:
復制代碼 代碼如下:
<form enctype="multipart/form-data" action="add_file.php" method="post">
<fieldset><legend>Fill out the form to upload a file:</legend>
<?php // Create the inputs.
for ($i = 0; $i < $counter; $i++) {
echo '<b>File:</b> <input type="file" name="upload' . $i . '" />
<b>Description:</b> <textarea name="description' . $i . '" cols="40" rows="5"></textarea>
';
}
?>
</fieldset>
<input type="hidden" name="submitted" value="TRUE" />
[align=center]<input type="submit" name="submit" value="Submit" />[/align]
</form>
在實際執行過程中發現上傳稍微大一些的文件時,顯示File couldn't be moved。
數據庫裡顯示文件名稱,不顯示大小。
而上傳大於8M的文件時,頁面根本沒有反應。