Well, an easier way would probably be to do the following:
if you have the letter you want it to begin with in $var, say, "A", do:
If ((substr($row[0], 0, 1) == strtoupper($var)) || (substr($row[0], 0, 1) == strtolower($var))) {
// Print out results
}
No need to use ereg, it's much faster this way anyway. Hope that helps.
Chris King