jQuery(document).ready(function(){ jQuery(\"#logbook_poplight\").dialog({ width: 'auto', modal: true }); });
"; } if ($_REQUEST['call']) { echo $call; $query = "SELECT ".$wpdb->prefix."logbook.*,".$wpdb->prefix."logbookRef.* FROM ".$wpdb->prefix."logbook INNER JOIN ".$wpdb->prefix."logbookRef ON ".$wpdb->prefix."logbook.refid = ".$wpdb->prefix."logbookRef.id WHERE ".$wpdb->prefix."logbook.Callsign = '".$_REQUEST['call']."' ORDER BY Date "; if ($wpdb->get_results($query)) { $call = strtoupper($call); $results = $wpdb->get_results($query); $num_rows = $wpdb -> num_rows; echo "
"; echo ""; echo " "; if (get_option( 'logbook_showMyCallsign' ) == "true") echo ""; if (get_option( 'logbook_showDate' ) == "true") echo ""; if (get_option( 'logbook_showTime' ) == "true") echo ""; if (get_option( 'logbook_showCall' ) == "true") echo ""; if (get_option( 'logbook_showBand' ) == "true") echo ""; if (get_option( 'logbook_showFreq' ) == "true") echo ""; if (get_option( 'logbook_showMode' ) == "true") echo ""; if (get_option( 'logbook_showRSTS' ) == "true") echo ""; if (get_option( 'logbook_showRSTR' ) == "true") echo ""; if (get_option( 'logbook_showRefNO' ) == "true") echo ""; if (get_option( 'logbook_showRefDesc' ) == "true") echo ""; echo " "; foreach ($results as $result){ echo ""; if (get_option( 'logbook_showMyCallsign' ) == "true") echo ""; if (get_option( 'logbook_showDate' ) == "true") echo ""; if (get_option( 'logbook_showTime' ) == "true") echo ""; if (get_option( 'logbook_showCall' ) == "true") echo ""; if (get_option( 'logbook_showBand' ) == "true") echo ""; if (get_option( 'logbook_showFreq' ) == "true") echo ""; if (get_option( 'logbook_showMode' ) == "true") echo ""; if (get_option( 'logbook_showRSTS' ) == "true") echo ""; if (get_option( 'logbook_showRSTR' ) == "true") echo ""; if (get_option( 'logbook_showRefNO' ) == "true") echo ""; if (get_option( 'logbook_showRefDesc' ) == "true") echo ""; echo ""; } echo "
Call sign usedDateTimeCallsignBandFrequencyModeRSTsRSTrReferenceReference Description
".$result->MyCallsign."".$result->Date."".$result->Time."".$result->CallSign."".$result->Band."".$result->Frequency."".$result->Mode."".$result->RSTS."".$result->RSTR."".$result->refnumber."".$result->refdescription."
"; echo "

WordPress ADIF Log Search Widget

"; echo "
"; logbook_search_form(); } else{ echo "
Sorry, nothing found in the logbook!
"; logbook_search_form(); } } else { logbook_search_form(); } ?>