Files

17 lines
484 B
PHP
Raw Permalink Normal View History

2012-05-22 14:20:08 +00:00
<?php
2015-07-13 20:10:26 +02:00
echo "<div style='margin: 0px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>";
2012-05-22 14:20:08 +00:00
2015-07-13 20:10:26 +02:00
$i = '1';
2012-05-22 14:20:08 +00:00
2020-09-21 15:40:17 +02:00
$aps = dbFetchRows("SELECT * FROM `access_points` WHERE `device_id` = ? AND `deleted` = '0' ORDER BY `name`,`radio_number` ASC", [$device['device_id']]);
2015-07-13 20:10:26 +02:00
echo "<div style='margin: 0px;'><table border=0 cellspacing=0 cellpadding=5 width=100%>";
foreach ($aps as $ap) {
2019-04-11 23:26:42 -05:00
include 'includes/html/print-accesspoint.inc.php';
2015-07-13 20:10:26 +02:00
$i++;
2012-05-22 14:20:08 +00:00
}
2015-07-13 20:10:26 +02:00
echo '</table></div>';
2012-05-22 14:20:08 +00:00
2015-07-13 20:10:26 +02:00
echo '</div>';