<?php 
show_source("61.php");
exit;
//This script initially split a file into 5mbit parts, then generated download links, and finally removed those parts as they merely copied the file.

// https://stackoverflow.com/questions/2044262/split-a-text-file-in-php
$i = 1;
 $fp = fopen("temp.dat", "r");
 while(! feof($fp)) {
    $contents = fread($fp,5000000);
    file_put_contents('temp-'.$i.'.dat', $contents);
    echo $i;$i++;}

for($i=1;$i<8;$i++){echo '<a href="temp-'.$i.'.dat">Part '.$i.'</a><br>';}
for($i=1;$i<8;$i++){unlink("temp-".$i.".dat"); echo $i;}

?>