Exemple #1
0
<div id="root">
<?php 
echo '<div id="head">' . "\n";
echo '<h1 align="center">Logbook of ' . strtoupper(logid_to_call($log_id)) . '</h1><br /><br />';
echo '</div>' . "\n";
if ($enable_cluster[$log_id] && $hamqth_api && !$hamqthtimeout) {
    include "inc/clusterold.php";
}
include "inc/log_inputold.php";
?>
<br /><br />

<?php 
include "inc/log_procold.php";
echo '<p align="right">';
$qso_amount = count_qsos($log_id);
switch ($qso_amount) {
    case 0:
        echo '<font color="red"><b>Nothing found!</b>' . "\n";
        break;
    case 1:
        echo '<font color="green">' . $qso_amount . ' QSO found' . "\n";
        break;
    default:
        echo '<font color="green">' . $qso_amount . ' QSOs found' . "\n";
}
echo '</font></p>';
?>
<hr>
<br><br>
Exemple #2
0
<body>

<?php 
echo '<h1 align="center">Logsearch of ' . strtoupper(logid_to_call($log_id)) . '</h1><br /><br />';
include "inc/search_inputold.php";
?>
<br /><br />

<?php 
include "inc/search_proc.php";
?>

<table align="center" border="0" cellpadding="0" cellspacing="0">
<tr><td width="300" align="center" >
<?php 
$match_amount = count_qsos($log_id);
switch ($match_amount) {
    case 0:
        echo '<font color="red"><b>Nothing found!</b>' . "\n";
        break;
    case 1:
        echo '<font color="green">' . $match_amount . ' QSO found' . "\n";
        break;
    default:
        echo '<font color="green">' . $match_amount . ' QSOs found' . "\n";
}
echo '</font>';
if ($inlog) {
    echo '</td><td width="300" align="center">';
    echo '<a href="javascript:window.close();">Close window</a>';
}
Exemple #3
0
        ?>
 searches from <?php 
        echo count_qsos($log_id);
        ?>
 QSOs in Log.
		</div>	
		</div>
		<?php 
    } else {
        ?>
		</br>
		<div class="row">
		<div class="col-sm-4"></div>	
		<div class="alert alert-info col-sm-4">
			<?php 
        echo count_qsos($log_id);
        ?>
 QSO in Log 
		</div>	
		</div>
		<?php 
    }
    include "inc/pubqsotable.php";
} else {
    echo '<h1 align="center">Publog not enabled</h1><br /><br />' . "\n";
}
?>

<p align="center"><a href="http://www.dl8bh.de/cqrweblog/">cqrweblog</a>, a simple webinterface for <a href="http://cqrlog.com">CQRLOG</a></p>

</body>
Exemple #4
0
include "inc/header.php";
include "inc/parse_edit.php";
?>

<html>
<head>
<?php 
echo '<title>' . strtoupper(logid_to_call($log_id)) . ' \'s Logbook</title>';
include "inc/metaheader.php";
?>
<meta charset="UTF-8">
</head>
<body style="overflow:auto;">
<?php 
echo '<div id="head">' . "\n";
echo '<h1 align="center">Logbook of ' . strtoupper(logid_to_call($log_id)) . '</h1><br /><br />';
echo '</div>' . "\n";
include "inc/edit_input.php";
?>

<?php 
include "inc/edit_proc.php";
echo '<p align="right">' . count_qsos($log_id) . ' QSO in Log</p>' . "\n";
?>

</body>
<?php 
include "inc/metafooter.php";
?>
</html>
Exemple #5
0
</head>
<body>

<?php 
if ($pubsearch_enabled) {
    $pubsearch = true;
    echo '<h1 align="center">Am I in ' . strtoupper(logid_to_call($log_id)) . '\'s Log?</h1><br /><br />';
    include "inc/pubsearch_inputold.php";
    echo '<br /><br />' . "\n";
    include "inc/search_proc.php";
    if (!empty($call)) {
        if ($enable_searchcount[$log_id]) {
            echo '<p><center>There have been ' . increment_search_count($log_id) . ' searches from Log</center></p>' . "\n";
        }
        echo '<p><h3 align="center"><font color="red">' . "\n";
        $aqsos = count_qsos($log_id);
        switch ($aqsos) {
            case 0:
                echo ' Your call was not found in the Log';
                break;
            case 1:
                echo $aqsos . ' QSO with you in the log';
                break;
            default:
                echo $aqsos . ' QSOs with you in the log';
        }
        echo '</font></h3></p>' . "\n";
    }
    echo '<hr>' . "\n" . '<br><br>' . "\n";
    if (!empty($call)) {
        include "inc/pubqsotableold.php";