I have setup a simple while loop which returns all images in a table along with their respective title and description so that users can update the details accordingly for each image.
The images are returned with a checkbox which allows user to delete images as per php code
if($_POST['doDelete'] == 'Delete') {
if(!empty($_POST['u'])) {
foreach ($_POST['u'] as $uid) {
$id = filter($uid);
mysql_query("delete from landscape where id='$id'");
}
}
$ret = $_SERVER['PHP_SELF'] . '?'.$_POST['query_str'];;
header("Location: $ret");
exit();
}
How do I incorporate the unlink() function into the page so that the file is also removed from the server?
Thanks! JD
unlink(foo)aftermysql_query? – Dogbert Jun 23 '11 at 18:48$id = filter($uid)seems to be doing the trick? – Cyclone Jun 23 '11 at 18:54mysql_real_escape_string()tofilter()elsewhere in his code... – Michael Wales Jun 23 '11 at 18:57