Get alphabet
function getAlphabet(&$result, $lower=false){
for ($c=$lower?97:65; $c<=$lower?122:90; $c++){
if (is_array($result)) $result[] = chr($c);
else $result .= chr($c);
}
}
function getAlphabet(&$result, $lower=false){
for ($c=$lower?97:65; $c<=$lower?122:90; $c++){
if (is_array($result)) $result[] = chr($c);
else $result .= chr($c);
}
}