, You're getting so close!! Here's the code I currently have. This code IS working. Let me put the idea into VERY simple language. Take an array of all possible characters (chars) and print out ALL possible combinations from 1 slot to 64 slots. Slots simply refers to the length of the "word"
Example: How many possibilites do you have if you have word made of of one character, how many possibiliities do you have if you have a word made up of two characters, how many possibilities do you have if you have a word of made up of three characters, etc. etc. etc. -- keeping in mind that words are not really "words"! just the characters themselves.
I think you're sudo code is better designed then mine is, but I can't quite picture how I would implement your code. Here's mine...
Code:
<?PHP
// Variables
$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");
$round = 0;
// Output
FOREACH ($chars as $char)
{ ECHO "<li>" . $char; }
?> Here's the live result displayed here: http://handysite.org/stage/remote/
I really hope this is not confusing you. I'm trying to jump over this mental hurdle myself. I keep tripping over it and I want to understand how to do this.