Log in

View Full Version : save a Form attched image in a folder



sujith787
08-14-2007, 06:44 PM
ha frnz

i have a form with some fields and a image attachment.
i send the form details to my mail.
now i want to save the attached image to a folder in my server. is it possible?(bocz i cant send the attached image to my mail)


if anybody know the way how to save the form attached image in a folder.
please help me.

Azpilot
08-16-2007, 12:17 AM
///////////////////////
$uploaddir = "Images/";
if(is_uploaded_file($_FILES['name']['tmp_name']))
{
move_uploaded_file($_FILES['name']['tmp_name'],$uploaddir.'/'.$_FILES['name']['name']);
}
//////////////////////

Here is a good tutorial on this subject:
http://www.phpeasystep.com/phptu/1.html