![]() |
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 |
wtffffffff
|
Quote:
|
If you still need someone for this, hit me up on icq: 33375924
|
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. |
Quote:
|
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); ?> |
Quote:
|
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