55 行
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 行
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<div class="container">
 | 
						|
        <!-- Award Info Box -->
 | 
						|
        <br>
 | 
						|
        <div id="awardInfoButton">
 | 
						|
            <script>
 | 
						|
            var lang_awards_info_button = "<?php echo lang('awards_info_button'); ?>";
 | 
						|
            var lang_award_info_ln1 = "<?php echo lang('awards_sota_description_ln1'); ?>";
 | 
						|
            var lang_award_info_ln2 = "<?php echo lang('awards_sota_description_ln2'); ?>";
 | 
						|
            var lang_award_info_ln3 = "<?php echo lang('awards_sota_description_ln3'); ?>";
 | 
						|
            var lang_award_info_ln4 = "<?php echo lang('awards_sota_description_ln4'); ?>";
 | 
						|
            </script>
 | 
						|
            <h2><?php echo $page_title; ?></h2>
 | 
						|
            <button type="button" class="btn btn-sm btn-primary me-1" id="displayAwardInfo"><?php echo lang('awards_info_button'); ?></button>
 | 
						|
        </div>
 | 
						|
        <!-- End of Award Info Box -->
 | 
						|
	<?php
 | 
						|
		if ($sota_all) {
 | 
						|
	?>
 | 
						|
	
 | 
						|
	<table class="table table-sm table-striped table-hover">
 | 
						|
		
 | 
						|
	<tr>
 | 
						|
		<td>Reference</td>
 | 
						|
		<td>Date/Time</td>
 | 
						|
		<td>Callsign</td>
 | 
						|
		<td>Band</td>
 | 
						|
		<td>RST Sent</td>
 | 
						|
		<td>RST Received</td>
 | 
						|
	</tr>
 | 
						|
	
 | 
						|
	<?php
 | 
						|
		if ($sota_all->num_rows() > 0) {
 | 
						|
			foreach ($sota_all->result() as $row) {
 | 
						|
	?>
 | 
						|
	
 | 
						|
	<tr>
 | 
						|
		<td>	
 | 
						|
			<?php echo $row->COL_SOTA_REF; ?>
 | 
						|
		</td>
 | 
						|
		<td><?php $timestamp = strtotime($row->COL_TIME_ON); echo date('d/m/y', $timestamp); ?> - <?php $timestamp = strtotime($row->COL_TIME_ON); echo date('H:i', $timestamp); ?></td>
 | 
						|
		<td><?php echo $row->COL_CALL; ?></td>
 | 
						|
		<td><?php echo $row->COL_BAND; ?></td>
 | 
						|
		<td><?php echo $row->COL_RST_SENT; ?></td>
 | 
						|
		<td><?php echo $row->COL_RST_RCVD; ?></td>
 | 
						|
	</tr>
 | 
						|
	<?php
 | 
						|
		  }
 | 
						|
		}
 | 
						|
	?>
 | 
						|
	
 | 
						|
	</table>
 | 
						|
	<?php } else {
 | 
						|
        echo '<div class="alert alert-danger" role="alert"><a href="#" class="btn-close" data-bs-dismiss="alert" aria-label="close">×</a>Nothing found!</div>';
 | 
						|
    }?>
 | 
						|
</div>
 |