Cloudlog/application/views/awards/vucc/band.php

32 wiersze
1.0 KiB
PHP
Czysty Zwykły widok Historia

2020-03-15 13:18:49 +00:00
<div class="container">
<h1><?php echo $page_title; ?></h1>
<h3>Filtering on <?php echo $filter ?></h3>
<?php
$i = 1;
if ($vucc_array) {
echo '<table class="table table-sm tablevucc table-bordered table-hover table-striped table-condensed text-center">
2020-03-15 13:18:49 +00:00
<thead>
<tr>
<td>#</td>
<td>Gridsquare</td>
<td>QSL</td>
<td>LoTW</td>
</tr>
</thead>
<tbody>';
foreach ($vucc_array as $vucc => $value) { // Fills the table with the data
echo '<tr>
<td>'. $i++ .'</td>
2020-09-20 12:09:46 +00:00
<td><a href=\'javascript:displayVuccContacts("'. $vucc .'","'. $band . '")\'>'. $vucc .'</td>
2020-03-15 13:18:49 +00:00
<td>'. $value['qsl'] . '</td>
<td>'. $value['lotw'] .'</td>
</tr>';
}
echo '</tfoot></table></div>';
}
else {
echo '<div class="alert alert-danger" role="alert"><a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>Nothing found!</div>';
}
?>