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
error_reporting(E_ALL); include('class.upload.php'); $handle = new Upload($_FILES['my_field']); if ($handle->uploaded) { $handle->image_resize = true; $handle->image_ratio_y = true; $handle->image_x = 400; $handle->file_new_name_body = 'xxx'; } $handle->Process('/images/'); echo $handle->error; $handle-> Clean();
wrong copy..:D