postbil.com Posted November 22, 2009 Share Posted November 22, 2009 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.