Schlo_50 Posted May 21, 2007 Share Posted May 21, 2007 Hello phpfreaks! I have a page on my website whereby i'd like to display some images. These images have to change from time to time so the need to update them using my control panel is necessary. What i have created so far is a script that uploads a picture into a folder stored in the root of the site. What i need from someone is a snippet of code which will delete the original picture saved in the folder when a new image is uploaded to it using the control panel. Here is the code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <style type="text/css"> <!-- body { background-color: #6191c2; } --> </style> <link href="file:///C|/apachefriends/xampp/htdocs/rotaryclub/rotary.css" rel="stylesheet" type="text/css" /> </head> <body> <p align="center"> <span class="rotary"> <?php // Where the file is going to be placed $target_path = "president/"; /* Add the original filename to our target path. Result is "uploads/filename.extension" */ $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); $_FILES['uploadedfile']['tmp_name']; $target_path = "president/"; $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded"; } else{ echo "There was an error uploading the file, please try again!"; } ?> </span></p> <p align="center" class="rotary"><a href="editmember.php">Edit Member pictures further</a> <br /> <br /> <input name="button" type="button" onclick="self.close()" value="Close this window" /> </p> </body> </html> Thanks guys, hope someone can help! Quote Link to comment https://forums.phpfreaks.com/topic/52408-uploading-images-and-replacing-old-ones/ Share on other sites More sharing options...
MadTechie Posted May 21, 2007 Share Posted May 21, 2007 <?php unlink($file); //delete a file ?> Quote Link to comment https://forums.phpfreaks.com/topic/52408-uploading-images-and-replacing-old-ones/#findComment-258628 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.