Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2014 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9d7dc9f62af969b5c32c to your computer and use it in GitHub Desktop.
Save anonymous/9d7dc9f62af969b5c32c to your computer and use it in GitHub Desktop.
<?php
include_once(dirname(dirname(__FILE__)) . "/config.php");
$root=WEBSITEROOT_LOCALPATH;
$file = $root . $_POST["file"];
if(file_exists ($file)) {
unlink($file);
} else {
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment