git-svn-id: http://www.observium.org/svn/observer/trunk@326 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2008-11-27 12:02:45 +00:00
parent 4634c36e82
commit 052dab4cbd
6 changed files with 0 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
$hostname = gethostbyid($_GET[id]);
echo("<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>");
$i = "1";
$interface_query = mysql_query("select * from interfaces WHERE device_id = '$_GET[id]' AND deleted = '0' ORDER BY `ifDescr` ASC");
while($interface = mysql_fetch_array($interface_query)) {
include("includes/print-interface.inc");
}
echo("</table></div>");
?>