mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-23 18:57:12 +00:00
30 lines
1015 B
PHP
30 lines
1015 B
PHP
<div class="container">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
<h3><?= __("Filtering on"); ?> <?php echo $filter ?></h3>
|
|
<?php
|
|
$i = 1;
|
|
if ($counties_array) {
|
|
echo '<table style="width:100%" class="countiestable table table-sm table-bordered table-hover table-striped table-condensed text-center">
|
|
<thead>
|
|
<tr>
|
|
<td>#</td>
|
|
<td>' . __("State") . '</td>
|
|
<td>' . __("County") . '</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>';
|
|
foreach ($counties_array as $county) {
|
|
echo '<tr>
|
|
<td>'. $i++ .'</td>
|
|
<td>'. $county['COL_STATE'] .'</td>
|
|
<td><a href=\'javascript:displayCountyContacts("'. $county['COL_STATE'] .'","'. $county['COL_CNTY'] .'")\'>'. $county['COL_CNTY'] .'</a></td>';
|
|
echo '</tr>';
|
|
}
|
|
echo '</tbody></table></div>';
|
|
}
|
|
else {
|
|
echo '<div class="alert alert-danger" role="alert">' . __("Nothing found!") . '</div>';
|
|
}
|
|
?>
|