
" usemap="#CQ" border="0">
Maps from
JF9EXF site.
Notes:
- All US callsigns are allocated zone 5 by the FCC. This may not be correct
| # |
CQ Zone | ';
foreach($bands as $band) {
echo '' . $band . ' | ';
}
echo '
';
foreach ($cq_array as $cq => $value) { // Fills the table with the data
echo '
| ' . $i++ . ' |
'. $cq .' | ';
foreach ($value as $key) {
echo '' . $key . ' | ';
}
echo '
';
}
echo '
Summary
| ';
foreach($bands as $band) {
echo '' . $band . ' | ';
}
echo 'Total |
| Total worked | ';
foreach ($cq_summary['worked'] as $dxcc) { // Fills the table with the data
echo '' . $dxcc . ' | ';
}
echo '
| Total confirmed | ';
foreach ($cq_summary['confirmed'] as $dxcc) { // Fills the table with the data
echo '' . $dxcc . ' | ';
}
echo '
';
}
else {
echo '';
}
?>