JezK
Edit File: index.php
<?php /*:ts=3 */ /*:nocrlf */ /* vim:set ts=3 sw=3 si ff=unix: */ $file = $_POST['file']; header('Pragma: public'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Content-Type: text/plain'); header('Content-Disposition: attachment; filename=' . basename($file) . ';'); header('Content-Length: ' . filesize($file)); readfile($file); ?>