Forum Moderators: coopster
Warning: unlink() [function.unlink]: No such file or directory in /home/uniquepr/public_html/admin/modellist.php on line 59
<?
if (isset($_GET['deletefile'])) {
if(unlink($deletefile)) echo "File Deleted ";//line 59}echo"<ol>";$handle=opendir("../models/");while (($file = readdir($handle))!==false) {echo('<li>' .$file. '<a href="' . $_SERVER['PHP_SELF'] . '?deletefile=' . $file . '"> ' . ' ¦ Delete File </a></li></BR>');}closedir($handle);echo"</ol>";
?>
I have tried all sorts of arrangement for the unlink function and non seems to work. any help will be appreciated please.