include('ga.php'); ?>
|
Watch Live coverage here!
|
Questions? Comments? E-mail us - webcast@crrstv.net
$fp = fopen("counter.txt", "r");
$count = fread($fp, 1024);
fclose($fp);
$count = $count + 1;
$fp = fopen("counter.txt", "w");
fwrite($fp, $count);
fclose($fp);
?>
Hits: