What is the process that takes place when you upload a file in php?
Top Questions
There are two basic things covered here. The form that will be used to post the file data to and the actual program that does the uploading. Further we will discuss the method that PHP itself suggests for uploading files. Process 1 HTML PART
<form enctype="multipart/form-data" action="__URL__" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
Upload a file: <input name="smefile" type="file" />
<input type="submit" value="Upload" />
</form>
Thanks for your valuable information
Great one, thanks for your post.
this is what I call
this is what I call helpful...
Mark
Designer
Good to read this. Thanks!
Good to read this.
Thanks!
Post new comment