diff options
Diffstat (limited to 'http/pic/fetch.php')
-rw-r--r-- | http/pic/fetch.php | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/http/pic/fetch.php b/http/pic/fetch.php deleted file mode 100644 index 1fb94cd..0000000 --- a/http/pic/fetch.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php - -$resource = @file_get_contents('http://msc.com.pl/cezar' . $_SERVER['REQUEST_URI']); -if ($resource) { - $filename = array_pop(explode('/', $_SERVER['REQUEST_URI'])); - file_put_contents($filename, $resource); - foreach ($http_response_header as $header) { - header($header); - } - readfile($filename); -} - -?> |