Find a Freelancer to help you with your HTML projects
$t = "test contents"; header("Pragma: public"); header("Cache-control: public"); // Already expired, reload each time (debug) header("Expires: " . gmdate('D, d M Y H:i:s',time() - 10000) . ' GMT'); header("Content-disposition: attachment; filename=something.txt"); header("Content-Type: txt"); header("Content-Transfer-Encoding: binary"); header("Content-Length: " . strlen($t)); echo $t;