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 See thread Reply
//PDF upload Manipulation $uploadPdf = new upload($_FILES['edital']); if ($uploadPdf->uploaded) { //imagem $uploadPdf->file_new_name_body = 'edital_'.$codigo; $uploadPdf->process('../img/leiloes/leilao'.$codigo.'/'); //procede if ($uploadPdf->processed) { $status = 'Edital Enviado com Sucesso'; $uploadPdf->clean(); } else { $status = $uploadPdf->error; } }
I did!! =)