Jump to content

delete images from folder


lucan

Recommended Posts

 

I am using this code below to delete information which works perfect. How do I delete a file/ image which is in a folder.

 


<?php

// Connect to server and select database.
mysql_connect("localhost", "", "")or die("cannot connect"); 
mysql_select_db("stafflog")or die("cannot select DB");

mysql_query("DELETE FROM image WHERE ID = $_GET[id]") or die (mysql_error());


echo "Your information has been DELETED!";

header('Location: index.php');

?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/241524-delete-images-from-folder/
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.