Hi,
if(($row[0] != "mysql") || ($row[0] == "information_schema")) {
Oops...
if(($row[0] != "mysql") && ($row[0] == "information_schema")) {
Sicher?
Denn das läßt sich zu if ($row[0] == "information_schema")
vereinfachen (wenn der rechte Teil des && erfüllt ist, row[0] also "information_schema" ist, ist der linke automatisch erfüllt, weil "information_schema" != "mysql" ist.
cu,
Andreas a/k/a MudGuard