I am trying to allow various users to upload their own picture.  What I
would like to happen is to have the copy statement rename the .jpg
image to the username.  For example, if the username is mike, then I want
the picture to be renamed mike.jpg

The following is a snippet of code:

<?PHP
print "$CUserName" //ensures name is carried over from session

if(copy($userfile,"c:/phpweb/userpics/$CUserName.jpg"))
        {
        print "Your picture has been uploaded!";
        }
else
        {
        print "Error";
        }

unlink($userfile)
?>

The errors I get are as follows:
Warning: unable to open " for reading: Permission denied in
c:\phpweb/fuploadconfirm.php on line 15
Warning: Unlink failed (No such file or directory) in
c:\phpweb/fuploadconfirm.php on line 31

Line 15 is the if copy($userfile........) line in the above code 

AND

Line 31 is the unlink statement at the end.

Thanks,
Mike


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to