';
echo '';
echo '| Year | ';
foreach ($result as $master) {
echo '' . $master->Year . ' | ';
}
echo '
';
echo '';
echo '| Days | ';
foreach ($result as $master) {
echo '' . $master->Days . ' | ';
}
echo '
';
echo '
';
}
?>
Longest streak with QSOs in the log
A maximum of the 10 longest streaks are shown!
';
echo '';
echo '| Streak (Continues days with QSOs) | ';
echo 'Begin date | ';
echo 'End date | ';
echo '
';
foreach ($streaks as $streak) {
echo '';
echo '| ' . $streak['highstreak'] . ' | ';
echo '' . $streak['beginstreak'] . ' | ';
echo '' . $streak['endstreak'] . ' | ';
echo '
';
}
echo '
';
}
else {
echo '';
}
?>