Given these arrays, and echoes, must rand somehow have an associated number to bind with like the second alphanumeric example below?
$lets= array("A", "B", "C", "D", "E", "F", "G");
echo $lets[rand(0,7)]; // brings blank results here and there
$letters= 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");
$numbs= array("1", "2", "3", "4", "5", "6", "7", "8", "9");
echo $letters[rand(0,25)];
echo $numbs[rand(0,9)]; both of these together, always seems to succeed