<?php
	header("Content-Type: application/force-download");
	header("Content-Disposition: attachment; filename=\"random_password.php\"");

	readfile("random_password_code.php");
?>