deleteVars = new LoadVars();
deleteResponse = newLoadVars();
deleteResponse.onData = function() {
trace("Responded");
Alert.show(this.response, "Delete Status", Alert.OK, _root);
};
deleteVars.path = directoryTree.selectedNode.attributes.path;
trace(deleteVars.path);
deleteVars.sendAndLoad("[http://siteadministrator.simplifiedsoftware.org/delete.php](http://siteadministrator.simplifiedsoftware.org/delete.php)", deleteResponse);
<?php
echo 'response='.unlink($path);
?>
Nothing happens…ever! But if I go to the site (http://siteadministrator.simplifiedsoftware.org/delete.php) and type in “?somefile.exe” it will either throw the error…or do what it is supposed to do delete the file…
So that would mean the the AS is flawed somewhere, right? What to do?