Removed save.php

This commit is contained in:
Barry Silverman 2010-10-04 10:43:04 -04:00
parent f293f2f10b
commit e5bd2a5296

View File

@ -1,18 +0,0 @@
<?php
$filename = $_REQUEST['name'];
file_put_contents($filename, file_get_contents("php://input"));
function file_put_contents($filename, $data) {
$f = @fopen($filename, 'w');
if ($f) {
$bytes = fwrite($f, $data);
fclose($f);
return $bytes;
}
return false;
}
?>