GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   php guys (https://gfy.com/showthread.php?t=461678)

Chris 04-29-2005 12:21 PM

php guys
 
I need a script that generates all 3 character possibles from a-z and 0-9
like a1a
n34
k04
dg9


I can think of some sort of comp. for your few minutes of work if you want

Chris 04-29-2005 12:27 PM

wtffffffff

BlueWire 04-29-2005 12:29 PM

Quote:

Originally Posted by JupZChris
wtffffffff

From one washingtonian to another...hit me up on icq to let me know what you have to offer

woj 04-29-2005 12:32 PM

If you still need someone for this, hit me up on icq: 33375924

Serge Litehead 04-29-2005 12:35 PM

done something like that before.
i'm busy till next week, hit me up mid next week if you still need it at that time.

woj 04-29-2005 12:49 PM

Quote:

Originally Posted by holograph
done something like that before.
i'm busy till next week, hit me up mid next week if you still need it at that time.

:1orglaugh You must have misunderstood something, it was a 5 min job.

bawdy 04-29-2005 12:55 PM

dont know if woj did this for you...took about 2minutes....

<?
$chars = array('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','0','1','2','3','4','5','6','7','8','9') ;
$output = array();
for($i=0;$i<count($chars);$i++){
for($j=0;$j<count($chars);$j++){
for($k=0;$k<count($chars);$k++){
$t = $chars[$i] . $chars[$j] . $chars[$k];
$output[] = $t;
}
}
}
echo implode('<br>', $output);
?>

Serge Litehead 04-29-2005 02:15 PM

Quote:

Originally Posted by woj
:1orglaugh You must have misunderstood something, it was a 5 min job.

lol, true, its a 'simple' randomizer and i'm silly thought of generating all the possible combos. :) one more weekend flies into work.


All times are GMT -7. The time now is 10:01 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123