class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
more info about the class
See all posts Reply
Thanks for the wonderful upload class.
I have one problem, after creating object (before processing), flag upload->processed === TRUE.
In line 2602 (v.0.32) this code:
function upload($file, $lang = 'en_GB') {
...
$this->processed = true;
...
What was the reason?
I thought, that this flag should be TRUE only after calling upload->processe() method (according phpdoc).