sendalo/sendalo.php.tpl
2020-06-16 23:53:56 +02:00

12 lines
269 B
Smarty

<?php
if (isset($_REQUEST["url"])) {
$url = $_REQUEST["url"];
header('Content-type: application/octet-stream');
$data = file_get_contents($url, $maxlen=150000);
file_put_contents("php://output", $data);
die();
}
?>