Delete Image Script

Delete image script is used to delete an jpg gif png image from server.

Demo :



 

Example :

If you need to delete image from in the above script click delete icon. Then immediately which script ask "Are you sure you want to delete this image" message. If you click yes button the image will be delete otherwise image will not delete from server.

Code :

Following code is use to delete to image if you need to copy and use to your website.


<?php
  if(file_exists("Path/".file_name) && (file_name!=''))
  {
    unlink("Path/".file_name);
    chmod("Path/".file_name,0777);
  }
?>

In the above example file_exists() function is used to check image available from server and unlink() function is used to delete an image from server and chmod() is used to give permission to image file.

Free Download Script :

If you need to Delete Image Script click and download from following link.

Download




Content