alex s.: Problem mit SHOW STATUS

Beitrag lesen

Hallo zusammen,

möchte gerne die infos aus der DB ausgeben, das mache ich folgendermaßen:

-------------------------------------

print "<table border='0' cellpadding='1' cellspacing='1'>";

require "config.php";
$link2 = mysql_connect($dbhost, $dbuser, $dbpass)
              or die ("Could not connect");
                mysql_select_db ($dbname)
              or die ("Could not select database");

$query2="SHOW STATUS";
               $result2 = mysql_query ($query2)
                   or die ("Show Status From $dbname failed");

while($line2 = mysql_fetch_array($result2))
      {
print "
<tr>
<td bgcolor='#7C9BCD'><font class='tdesign01'>Bytes received</td><td>" . $line2['Bytes_received'] . "</td>
</tr>
<tr>
<td bgcolor='#7C9BCD'><font class='tdesign01'>Bytes sent</td><td>" . $line2['Bytes_sent'] . "</td>
</tr>
<tr>
<td bgcolor='#7C9BCD'><font class='tdesign01'>Max used connections</td><td>" . $line2['Max_used_connections'] . "</td>
</tr>";
      }

print "</table><br><br>";

------------------------------------

Ergebnis
-----------------------------------------
(Ausgabe ca. 20 mal)

Bytes received
Bytes sent
Max used connections
-----------------------------------------

Ich erhalte das Ergebnis ca. 20mal, allerdings ohne Werte, wenn ich mir das gleiche im phpmyadmin ansehe, sehe ich für bytes_received nur einen wert, für bytes auch und max_used_connections eben auch.

wo ist mein fehler?

gruß alex