Return to Snippet

Revision: 10571
at January 5, 2009 06:13 by fruehjahr


Initial Code
$uploadedImage = new Upload($_FILES['uploadImage']);
 
if ($uploadedImage->uploaded) {
	$uploadedImage->Process('myuploads');
	if ($uploadedImage->processed) {
		echo 'file has been uploaded';
	}
}

Initial URL
http://www.verot.net/php_class_upload.htm

Initial Description


Initial Title
Uploading of files

Initial Tags
files

Initial Language
PHP