First Commit

This commit is contained in:
Barry Silverman
2010-09-17 22:42:04 -04:00
commit 4d8da5b680
16 changed files with 12712 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?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;
}
?>