lang->line('general_word_eqslcards'); ?>

session->userdata('user_date_format')) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { // Get Default date format from /config/cloudlog.php $custom_date_format = $this->config->item('qso_date_format'); } if (is_array($qslarray->result())) { echo ''; foreach ($qslarray->result() as $qsl) { echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
'.$this->lang->line('gen_hamradio_callsign').' '.$this->lang->line('gen_hamradio_mode').' '.$this->lang->line('general_word_date').' '.$this->lang->line('general_word_time').' '.$this->lang->line('gen_hamradio_band').' '.$this->lang->line('gen_hamradio_qsl').'
' . str_replace("0","Ø",$qsl->COL_CALL) . ''; echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; echo ''; $timestamp = strtotime($qsl->COL_TIME_ON); echo date($custom_date_format, $timestamp); echo ''; $timestamp = strtotime($qsl->COL_TIME_ON); echo date('H:i', $timestamp); echo ''; if($qsl->COL_SAT_NAME != null) { echo $qsl->COL_SAT_NAME; } else { echo strtolower($qsl->COL_BAND); }; echo '' . $qsl->image_file . '
'; } ?>