This script is working for deleting from mysql database, but it's not unlinking from local directory files. Can anyone help to fix this script? Here's the script
<?php
include "../config/database.php";
if(isset($_GET['kode'])){
$id = (int) $_GET['kode'];
$sql = "select * from anidata where id='$id'";
$query = mysql_query($sql);
if(mysql_num_rows($query) > 0 ){
$data = mysql_fetch_array($query);
//delete file
$path = 'upload/'.$data['image'];
@unlink($path);
//delete from database
mysql_query("delete from anidata where id='$id'");
}
}
header("Location: view.php");
?>
And thanks for helping anyway! :)
This File are no delete Because file store out side of
www
folder and wemp server only working insidewww
directory .If you want to upload image on desktop or any other folder out sidewww
folder same Condection apply No Uploading Done You Get An Error.