| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member ![]() ![]() Join Date: Apr 2005 Location: .ma.us
Posts: 1,883
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | PHP 3/2-letter/Number snippet I have these snippets, think I got them off this site, and they list letter combos etc. I want to make it so I can add a tld to the end of all the combos but when i try the tld is in front and not at the end here are the snippets: 2 # combos Code: <?
/*
1 - 999
*/
$ini = 0;
$fin = 99;
for($i=$ini; $i<=$fin; $i++)
{
printf( "%s<br />\r\n", str_pad($i, 2, "0", STR_PAD_LEFT) );
}
?> Code: <?
$letra = array();
for($i=97; $i<=122; $i++)
{
$letra[] = chr($i);
}
foreach($letra AS $a) {
foreach($letra AS $b) {
foreach($letra AS $c) {
echo "$a$b$c<br />\r\n";
}
}
}
?> Code: <?
/*
1 - 999
*/
$ini = 0;
$fin = 999;
for($i=$ini; $i<=$fin; $i++)
{
printf( "%s<br />\r\n", str_pad($i, 3, "0", STR_PAD_LEFT) );
}
?>
__________________ GEO & Travel Domains For Sale - MUST SEE! Chinaphobia.com - WorldRails.com - RussianReserves.com |
| |
| | THREAD STARTER #3 (permalink) |
| Senior Member ![]() ![]() Join Date: Apr 2005 Location: .ma.us
Posts: 1,883
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() | right
__________________ GEO & Travel Domains For Sale - MUST SEE! Chinaphobia.com - WorldRails.com - RussianReserves.com |
| |
| | #5 (permalink) |
| Account Suspended Join Date: May 2004 Location: /etc/passwd
Posts: 2,178
![]() ![]() ![]() ![]() ![]() ![]() | got bored... PHP Code: This will check if its available or not... Have fun... please donate np$ if you use it ![]() http://phpprint.com/whois.php for example of the code above... if you need help just ask |
| |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tutorial: Getting started with PHP (The Basics) | deadserious | Webmaster Tutorials | 60 | 11-17-2007 11:35 AM |
| Googlism - What does google think of you? | deadserious | The Break Room | 55 | 12-15-2005 09:09 AM |
| Beware of PHP! | PolurNET | The Break Room | 25 | 03-29-2005 03:04 PM |