Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DevShed:
Building File Uploaders with PHP 5
Mar 20, 2008 @ 16:18:11

On DevShed today there's a new tutorial showing how to build file upload functionality into your scripts.

If you're a PHP developer who has built a certain number of web applications, then it's quite probable that you've already worked with HTTP file uploads. [...] First I'm going to teach you how to handle file uploads using a procedural approach, and then, with the topic well underway, by way of the object-oriented paradigm.

The introduce the beginners out there to the $_FILES array (a superglobal) that contains the details about the file(s) that have been submitted. Next comes the construction of a simple form and how to handle the submission on the PHP side.

tagged: file upload php5 tutorial beginner files superglobal form

Link:


Trending Topics: