Chase Online Certificates

Activity Award

Any station that appears in all 59 WRTC team logs will be able to download a certificate from the WRTC2014 Web site after the contest. The list below is all stations that qualify by appearing in the logs of all 59 WRTC teams. Click on the link to go to the certificate download.

There were 388 stations that accomplished the sweep of working all 59 teams.

[insert_php] $certificate_list_file = “http://www.wrtc2014.org/certificate/worked_all_59.csv”;

$file = fopen($certificate_list_file, ‘r’) or exit(“Unable to open “.$certificate_list_file.” file!”);
while (($line = fgetcsv($file)) !== FALSE) {
//$line is an array of the csv elements
print “$line[0]\n”;
// print “$line[0] \n”;
}
fclose($file);

[/insert_php]