46 行
995 B
PHP
46 行
995 B
PHP
|
|
<div id="container">
|
|
<h1><?php echo $page_title; ?></h1>
|
|
|
|
<!-- Sub Nav for Awards -->
|
|
|
|
<?php $this->load->view("awards/nav_bar")?>
|
|
|
|
<table width="100%" class="zebra-striped">
|
|
<thead>
|
|
<tr>
|
|
<td>Country</td>
|
|
<td>160m</td>
|
|
<td>80m</td>
|
|
<td>40m</td>
|
|
<td>30m</td>
|
|
<td>20m</td>
|
|
<td>17m</td>
|
|
<td>15m</td>
|
|
<td>12m</td>
|
|
<td>10m</td>
|
|
<td>6m</td>
|
|
<td>4m</td>
|
|
<td>2m</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
|
|
foreach($dxcc as $country=>$val){
|
|
print("<tr><td>$country</td>");
|
|
foreach($val as $band=>$count){
|
|
if ($count == 0){
|
|
print("<td> </td>");
|
|
}else{
|
|
printf("<td><a href='dxcc_details?Country=\"%s\"&Band=\"%s\"'>%d</a></td>", $country, $band, $count);
|
|
}
|
|
}
|
|
print("</tr>");
|
|
}
|
|
|
|
?>
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|