我有以下代碼從數據庫中刪除記錄。不過,我希望它也可以從服務器上刪除關聯的文件。其中一列包含文件的路徑。有人可以解釋我將如何在這裏使用取消鏈接功能嗎?刪除文件和記錄
<?php
include('config.php');
if (isset($_GET['id']) && is_numeric($_GET['id']))
{
$id = $_GET['id'];
$result = mysql_query("DELETE FROM images WHERE id=$id")
or die(mysql_error());
header("Location: view.php");
}
else
{
header("Location: view.php");
}
?>
在刪除之前從表格中選擇需要的信息。 – 2012-04-04 22:02:44