Hallo,
eine Alternative:
$i = 0;
while ($ergebnisarray = mysql_fetch_array($result))
{
-- gibt alle Benutzer aus --
$i++;
}
if (!$i) -- da war wohl nichts
andere Alternative:
$num = mysql_num_rows($result);
if (!$num) -- da ist nichts auszugeben
Hope it helps
Michael