Link zum Weg bei allen routen

Signed-off-by: Christian Dresel <fff@chrisi01.de>
This commit is contained in:
Christian Dresel 2018-08-19 09:58:23 +02:00
parent 9a922cf238
commit 43a4cf5936
1 changed files with 10 additions and 1 deletions

View File

@ -195,8 +195,17 @@
<th>Destination ID</th>
</tr>';
foreach($output['routes'] as $route) {
$set=0;
echo "<tr>";
foreach($route as $temp) { echo "<td>$temp</td>"; }
foreach($route as $temp) {
if ($set == 0) {
echo '<td><a href="'.$_SERVER["PHP_SELF"].'?ip='.$temp.'">'.$temp.'</a></td>';
$set=1;
}
else {
echo "<td>$temp</td>";
}
}
echo "</tr>";
}
echo "</table>";