rendered paste body<html><body><form action="index.php" method="POST"<input type="text" name="url" width="500">Paste<input type="text" name="filename" width="500"><input type="checkbox" name="zipoption[]" value="zip"><input type=submit value="submit"></form><?php$url = $_POST['url'];$filename = $_POST['filename'];$filename = (isset($filename)) ? $filename : 'renameme';$ch = curl_init($url);$fp = fopen($filename, "w");curl_setopt($ch, CURLOPT_FILE, $fp);curl_setopt($ch, CURLOPT_HEADER, 0);curl_exec($ch);curl_close($ch);fclose($fp);?></body></html>