A simple script that formats the number ob bytes of a file to kb, mb, gb or tb. function mksize($bytes) { if ($bytes < 1000 * 1024) return number_format($bytes / 1024, 2) . " KB"; elseif ($bytes < 1000 * 1048576) return number_format($bytes /...
Klemen pointed out that there was an internal (now external) beta release of the most used Windows Live Messenger addon, Plus!. He also said, that the non-beta version should be out in the next few days. For those of you who can’t wait to try it, feel free to...
This script is more accurate then a normal validation script. After checking if the email is correctly typed in (@) it checks the domain validity by checking it’s dns records (MX, A and CNAME). A piece of the regex is cut because of my sidebar but if you copy/paste...
Again.. if you get a message like: Hey bima_pff check out the pics from the crazy party!! they are nuts LOL! go here to see http://nasal.burnoutpeeps.com Don’t go there! AND USE FIREFOX. Read More →
I used UltraEdit and then changed to Notepad++ but decided to start using something more specific for php. I found a site that reviews quite a lot of them, PHP editors review. I downloaded PHP Eclipse (you need Eclipse and then go to Help – Software updates –...
(E)2 Photo Gallery (E)2 Photo Gallery is a open source gallery built with Mootools Javascript Library the compact, modular, Object-Oriented javascript framework. Designed to allow you to upload your photos to a desired folder, tell the (E)2 Photo Gallery what folder...
LOS ANGELES (Reuters) – Tom Cruise is alive and well, his agent said on Thursday, denying Internet reports that the actor had fallen to his death in New Zealand. “This is completely not true. Tom is not in New Zealand nor has he been there recently. This is...
I found a funny but working way to write less php and more html code.. Instead of writing: < ?php echo '< form action="" method="post">'; echo '< input type="text" name="something">'; echo...