Jump to content

delete files


postbil.com

Recommended Posts

Hello Phpfreaks

I had made a site where the user can upload a profile picture then he create a profile to the site. But my problem is then I will give the user opportunity to edit the profile information and  insert another pictue. But I had a problem with delete the old profile picture..

Can somebody tell me what I do wrong??   

  if(!empty($_FILES['pic'])) {

        $dirname = "User/" . $email . "/Profileimage/";

        $dirhandle = opendir($dirname);

            while($file = readdir($dirhandle)) {

                if ($file !=  "." && $file != ".."){

                    if (is_file($dirname.$file)){

                        unlink($file, $dirname);

        }

    }

}

        if( $_FILES["pic"]["type"] == "image/pjpeg" || $_FILES["pic"]["type"] == "image/jpeg" || $_FILES["pic"]["type"] == "image/gif" ) {

            $destination = "User/" . $email . "/Profileimage/" . $_FILES['pic']['name'];

 

            move_uploaded_file($_FILES['pic']['tmp_name'], $destination);

 

            }

    }

...

 

 

Postbil

Link to comment
https://forums.phpfreaks.com/topic/182491-delete-files/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.