我想從上傳文件夾中刪除照片,當我按下刪除所有記錄被刪除,除了上傳文件夾中的圖片這裏是我的刪除,如何編碼從上傳刪除的代碼段文件夾如何從上傳文件夾中刪除文件
//trigger
<?php
echo '<td><a href="delete.php?staff_id=' . $row['staff_id'] . '"><input type="button" onclick="confirmDelete(event)" value="delete">
// check if the 'staff_id' variable is set in URL, and check that it is valid
if (isset($_GET['staff_id']) && is_numeric($_GET['staff_id']))
{
// get staff_id value
$staff_id = $_GET['staff_id'];
// delete the entry
$result = mysql_query("DELETE FROM development WHERE staff_id=$staff_id")
or die(mysql_error());
你可以使用[PHP取消鏈接功能](http://php.net/manual/en/function.unlink.php) – TheNytangel
這是delete.php的鏈接,你需要顯示的處理delete.php當鏈接被點擊時執行。 (歡迎也) – Jonnny
但是什麼是'(isset($ _ GET ['staff_id'])&& is_numeric($ _ GET ['staff_id']))' – Jonnny