");
echo("| Port | Traffic | Sync Speed | Attainable Speed | Attenuation | SNR Margin | Output Powers |
");
$i = "0";
$interface_query = mysql_query("select * from `ports` AS P, `ports_adsl` AS A WHERE P.device_id = '".$device['device_id']."'".
" AND A.interface_id = P.interface_id AND P.deleted = '0' ORDER BY `ifIndex` ASC");
while ($interface = mysql_fetch_assoc($interface_query))
{
include("includes/print-interface-adsl.inc.php");
$i++;
}
echo("
");
echo("");
?>