1
<?php
2
header('Content-type: application/force-download');
3
header('Content-disposition: attachment; filename=stats-data.php');
4
5
echo file_get_contents('../stats-data.php');
6