Archive for November, 2007
Pretty Cool
(Don’t ask me! I don’t know how it’s done!!)
This is not a test – just a phenomenon. All readings are explained.
Read out loud the text inside the triangle below.!
More than likely you said, ‘A bird in the bush,’! And. …….
If this IS what [...]
I’m moving house on tuesday and as such have a quantity of free shit I’m giving away to anyone who could make use of it.
Only catch is you’ll have to come and pick it up before Tuesday.
2 Small CD racks
Large 1960’s wooden office desk – could do with a re-varnishing
Pine bead stead – 2 years [...]
<?php
//———————————————– //
Function to force download of a file
//———————————————–
public function download($file_name, $file_path, $mime_type)
{
header(‘Content-Description: File Transfer’);
header(‘Content-Type: ‘.$mime_type);
header(‘Content-Disposition: attachment; filename="’.$file_name.‘";’);
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header(‘Content-Length: ‘ . filesize($file_path));
@readfile($file_path);
die();
}
?>
Sphere: Related Content
You Can Also Find Me On: