Print Alphanumeric with atleast 1 numeric (PHP)

How to print 3 letter Alphanumeric with atleast 1 character as Numeric. <?php $alphanumeric= array(“0″,”1″,”2″,”3″,”4″,”5″,”6″,”7″,”8″,”9″,”A”,”B”,”C”,”D”,”E”,”F”,”G”,”H”,”I”,”J”,”K”,”L”,”M”,”N”,”O”,”P”,”Q”,”R”,”S”,”T”,”U”,”V”,”W”,”X”,”Y”,”Z”); for($i=0; $i<36; $i++) { for($j=0; $j<36; $j++) { for($k=0; $k<36; $k++) { if($i>=’10’ && $j>=’10’ && $k>=’10’) { } else { $newword=$alphanumeric[$i].$alphanumeric[$j].$alphanumeric[$k]; echo “$newword<br>”; } } } } ?>

Print Alphanumeric (PHP)

How to print all 3 letter long Alphanumeric words. <?php $alphanumeric= array(“0″,”1″,”2″,”3″,”4″,”5″,”6″,”7″,”8″,”9″,”A”,”B”,”C”,”D”,”E”,”F”,”G”,”H”,”I”,”J”,”K”,”L”,”M”,”N”,”O”,”P”,”Q”,”R”,”S”,”T”,”U”,”V”,”W”,”X”,”Y”,”Z”); for($i=0; $i<36; $i++) { for($j=0; $j<36; $j++) { for($k=0; $k<36; $k++) { $newword=$alphanumeric[$i].$alphanumeric[$j].$alphanumeric[$k]; echo “$newword<br>”; } } } ?>

Dictionary Names available – .CO

After so many registrations (more than 410,000, now) with in few days of General registrations. You can still find dictionary names and 3 letter names available. I will update them here and will add to this list more and more names daily.. Dictionary Namesterminate.coafghanistani.comosquiotes.co 4 letter LLLL .CO oder.co 3 letter LLL .CO zyq.co 2 Wordssearchhome.co If … Read more

Contacts got easier to manage on Gmail

Today when I opened my Gmail Inbox, there was a slight change in the feel with some changes in navigation. It seems navigation has been changed for ease of use. Some changes have been made to Contacts also. With new features in Contacts, labeling like for mails has also been added. This will make quick … Read more

Print Alphabets (PHP)

How to Print Alphabets. You can print a range of Alphabets e.g. from A to Z or A to ZZ like A, B, C … AA, AB, AZ… ZY, ZZ and more $length=”3″; for ($alpha=’A’; strlen($alpha)<=$length; $alpha++) { print “$alpha<br>”; }

.CO – to Go for it or Not

.CO TLD was opened for general registrations just after the day when the most popular TLD .COM turned 25 years old. Within few minutes of its opening more than 1,00,000 domains were grabbed and currently more than 3,25,000 domains have already been registered..WoW! what a great start for .CO. Many people are still thinking that … Read more

The .CO Era!

.CO TLD was opened today (20th July, 2010) for General Registrations at around 11:30PM (IST). More than 100000 domains were grabbed in First 25 minutes. If you were not able to grab a .com domain of your choice, now you have a chance to have a similar TLD – .CO.CO stands for – “Company”, “Corporation” … Read more

Page Generation Time (using PHP)

With this script you can display how much this Time this page has taken to load. <?php // Insert at the start of your document $time = round(microtime(), 3); // Insert at the end of your document $time2 = round(microtime(), 3); $generation = $time2 – $time; echo “This page took $generation seconds to render”; ?>