Miscellany
public php v1 · immutable<?php$url = $_POST['url'];$filename = $_POST['filename'];if (!isset($filename)) { $filename = 'renameme'; }$ch = curl_init($url);curl_setopt($ch, CURLOPT_HEADER, 0);header("Content-Type: application/octet-stream");header("Content-Disposition: attachment; filename=\"$filename\"");curl_exec($ch);curl_close($ch);?>