Archive for July, 2005
php alphabet output
July 6th, 2005
aw thanks to miki for the tip. i was wondering if there was a smarter way to print out the alphebat in php than just typing them out LOL
———-
Every letter of the English alphabet corresponds to an ASCII code, so rather than manually typing everything out, you can achieve the same result with a simple PHP loop.
The code below will output all uppercase letter from A to Z by running through ASCII codes 65-90 (the values for uppercase letters) and converting each code to its corresponding letter using the in-built PHP function chr().
<?php
for ($i=65; $i< =90; $i++) {
$x = chr($i); print $x;
}
?>
For lowercase letters, use the numbers 97-122 instead.
dodoupload 1.3
July 1st, 2005
worked most of today on releasing dodoupload version 1.3. if you never had problem with previous versions, you probably don’t need to upgrade. there is not much change from version 1.2. I rewrote the script mostly because some people have problems with http auth and i couldn’t figure out why. so now it’s cookie based login. i also got an email requesting to allow no login. so that’s an option now too.
amy from e-starr.com is now hosting regretless.com. i plan to reopen the registration for dodocounter
stay tune!

