new things! vrfs!

git-svn-id: http://www.observium.org/svn/observer/trunk@256 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2008-10-28 22:06:00 +00:00
parent e66aad0333
commit cbcb2cc13e
6 changed files with 98 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
echo("<div style='margin: 5px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>");
$i = "1";
$vrf_query = mysql_query("select * from vrfs WHERE device_id = '".$_GET['id']."' ORDER BY 'vrf_name'");
while($vrf = mysql_fetch_array($vrf_query)) {
include("includes/print-vrf.inc");
$i++;
}
echo("</table></div>");
?>