24 Jun, 2008
Posted by: john In: funny
I hate it when people forward bogus warnings, and I have even done it myself a couple times … But this one is real, and it’s important, so please send this warning to everyone on your e-mail list:
If someone comes to your front door saying that s/he is checking for ticks due to the warming [...]
Now two dogs can clean your screen even faster than one.
Please visit the site (suwanneesunsetshibas.com) and click on some of their ads if you like the screen cleaner.
Thanks John for finding this.
Here’s the follow-up article on how to easily get file sizes nicely formated. Below is a quick function that will display the file size in KB, MB, or GB all easily accessed through a function.
function formatbytes($file, $type)
{
switch($type){
case “KB”:
$filesize = filesize($file) * .0009765625; // bytes to KB
break;
case “MB”:
$filesize = (filesize($file) * .0009765625) * .0009765625; // bytes [...]