--- etc/view.php.orig 2003-09-26 16:58:34.000000000 +0100 +++ etc/view.php 2014-06-22 15:24:14.720483023 +0100 @@ -11,10 +11,8 @@ print "\n\n
\n"; /* Connect to RTG MySQL Database */ - $dbc=@mysql_connect ($host, $user, $pass) or - $dbc=@mysql_connect ("$host:/var/lib/mysql/mysql.sock", $user, $pass) or + $dbc=@mysqli_connect ($host, $user, $pass, $db) or die ("MySQL Connection Failed, Check Configuration."); - mysql_select_db($db,$dbc); # Global variables off by default in newer versions of PHP if (!$PHP_SELF) { @@ -26,17 +24,17 @@ # Determine router, interface names as necessary if ($rid && $iid) { $selectQuery="SELECT a.name, a.description, a.speed, b.name AS router FROM interface a, router b WHERE a.rid=b.rid AND a.rid=$rid AND a.id=$iid"; - $selectResult=mysql_query($selectQuery, $dbc); - $selectRow=mysql_fetch_object($selectResult); - $interfaces = mysql_num_rows($selectResult); + $selectResult=mysqli_query($dbc, $selectQuery); + $selectRow=mysqli_fetch_object($selectResult); + $interfaces = mysqli_num_rows($selectResult); $name = $selectRow->name; $description = $selectRow->description; $speed = ($selectRow->speed)/1000000; $router = $selectRow->router; } else if ($rid && !$iid) { $selectQuery="SELECT name AS router from router where rid=$rid"; - $selectResult=mysql_query($selectQuery, $dbc); - $selectRow=mysql_fetch_object($selectResult); + $selectResult=mysqli_query($dbc, $selectQuery); + $selectRow=mysqli_fetch_object($selectResult); $router = $selectRow->router; } @@ -68,12 +66,12 @@ if (!$rid) { print "Monitored Devices:\n";
$selectQuery="SELECT rid, name FROM router";
- $selectResult=mysql_query($selectQuery, $dbc);
- if (mysql_num_rows($selectResult) <= 0)
+ $selectResult=mysqli_query($dbc, $selectQuery);
+ if (mysqli_num_rows($selectResult) <= 0)
print "
No Routers Found.
\n";
else {
print "
\n";
- print "\n";
+ print "name . " (" . $selectRow->description . ")");
+ print "&t1_name=" . urlencode("Input Octets") . "&t2_name=" . urlencode("Output Octets");
+ print "&iid=$iid&begin=$bt&end=$et&units=bits/s&factor=8&filled=yes\" BORDER=\"0\">\n";
print " \n"; print "$selectRow->name ($selectRow->description)\n"; if ($even) { @@ -148,7 +152,7 @@ print "\n"; } - if ($dbc) mysql_close($dbc); + if ($dbc) mysqli_close($dbc); echo "\n"; ?> |