Development of a file upload share site, once wanted to use the following code to achieve file upload function:
Copy Code code as follows:
<form enctype= "Multipart/form-data" action= "add_file.php" method= "POST" >
<fieldset><legend>fill out of 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=" rows= "5" ></textarea>
';
}
?>
</fieldset>
<input type= "hidden" name= "submitted" value= "TRUE"/>
[Align=center]<input type= "Submit" name= "submit" value= "Submit"/>[/align]
</form>
The file couldn ' t be moved is shown when uploading slightly larger files during actual execution.
The file name is displayed in the database and the size is not displayed.
When uploading files larger than 8M, the page does not respond at all.