';
$services = array();
$services = gethostservices($id);
$class = 'row1';
if (! is_null($services)) {
$colspan = 'colspan=3';
while ($row = array_pop($services)) {
echo '
'.$row[0].' |
'.$row['name'].' |
';
if ($class == 'row1')
$class = 'row2';
else
$class = 'row1';
}
} else {
echo '
No services defined for this host |
';
}
echo '
|