我正在寻找一种在单击链接时使用 php 执行功能的方法。我的意思是单击此链接时删除一个项目。我的代码设置如下:
$files = glob("upload/*.*");
if(count($files) == 0){
echo "No files present";
} else {
foreach ( $files as $file ) {
$array = explode("/", $file);
//echo $array[1] . "<br>";
echo "<tr>";
echo "<td>" . $array[1] . "</td>";
echo '<td><img height="70" width="auto" src=" ' . $file . '" ></td>';
echo '<td><a href="">Delete item</a></td>';
echo "</tr>";
}
}