Basic Php File Upload System
im building a file upload/dwnload app in php..im using the following form Upload Index
Solution 1:
Remove smart-quote “ ”
.
<form enctype="multipart/form-data" action="files.php" method="post">
<p>Choose your file to upload!
<input name="uploadedfile" type="file" />
<input type="submit" value="Upload">
<br />
And what would you like to call it? <input name="title" type="text" />
</p>
<p><br />
</p>
</form>
Post a Comment for "Basic Php File Upload System"