|
Television & Radio
Star-Bulletin staff
|
TODAY
| BASEBALL -- WORLD CLASSIC |
TIME |
TV |
RADIO
|
| Cuba vs. Puerto Rico* |
9 p.m. |
ESPN2
|
| South Africa vs. United States* |
10 p.m. |
ESPN
|
BASEBALL -- COLLEGE MEN
|
| Western Illinois at Hawaii |
6:30 p.m. |
|
1420-AM
|
BASKETBALL -- COLLEGE MEN
|
| Miami vs. Duke |
7 a.m. |
ESPN2
|
| Penn St. vs. Ohio St. |
7 a.m. |
ESPN
|
| Wake Forest vs. N.C. State |
9 a.m. |
ESPN2
|
| Indiana vs. Wisconsin |
9 a.m. |
ESPN
|
| Holy Cross at Bucknell |
11:30 a.m. |
ESPN2
|
| Syracuse vs. Georgetown |
2 p.m. |
ESPN
|
| Virginia vs. North Carolina |
2 p.m. |
ESPN2
|
| Villanova vs. Pittsburgh |
4 p.m. |
ESPN
|
| Maryland vs. Boston College |
4 p.m. |
ESPN2
|
| Arizona vs. UCLA |
4 p.m. |
FSW2
|
| California vs. Oregon |
6:30 p.m. |
FSW2
|
| Utah vs. Wyoming |
7 p.m. |
ESPN
|
BASKETBALL -- COLLEGE WOMEN
|
| Missouri vs. Oklahoma* |
11 a.m. |
FSW
|
| Baylor vs. Texas A&M* |
1 p.m. |
FSW
|
GOLF
|
| Singapore Masters* |
4 a.m. |
GLF
|
| Barton Creek Challenge |
9 a.m. |
GLF
|
| MasterCard Classic |
11 a.m. |
GLF
|
| AT&T Classic* |
1 p.m. |
GLF
|
| Honda Classic* |
4 p.m. |
USA
|
VOLLEYBALL -- COLLEGE MEN
|
| UCLA at Hawaii |
7 p.m. |
KFVE
|
| UCLA at Hawaii* |
10:30 p.m. |
KFVE |
|
TALK SHOWS
|
| Johnny Miro/Super Bowl Wayne |
5 a.m. |
|
690-AM
|
| The Bobby Curran Show |
6:05 a.m. |
|
1420-AM
|
| On Point w/ Artie Wilson |
9:05 a.m. |
|
1420-AM
|
| The Sports Bar |
3:05 p.m. |
|
1420-AM |
TOMORROW
| AUTO RACING |
TIME |
TV |
RADIO
|
| Sam's Town 300 |
1:30 p.m. |
FX
|
BASEBALL -- COLLEGE MEN
|
| Western Illinois at Hawaii |
1 p.m. |
|
1420-AM
|
BASKETBALL -- COLLEGE MEN
|
| C-USA championship |
6:30 a.m. |
KGMB
|
| Vermont at Albany (N.Y.) |
7 a.m. |
ESPN2
|
| ACC semifinal |
8:30 a.m. |
ESPN
|
| Big 10 semifinal |
9 a.m. |
KGMB
|
| Big 12 semifinal |
9 a.m. |
ESPN2
|
| ACC semifinal |
10:30 a.m. |
ESPN
|
| Big 10 semifinal |
11 a.m. |
KGMB
|
| Big 12 semifinal |
11 a.m. |
ESPN2
|
| Pac 10 final |
1 p.m. |
KGMB
|
| A-10 final |
1 p.m. |
ESPN
|
| MAC final |
1:30 p.m. |
ESPN2
|
| MEAC final |
2:30 p.m. |
ESPNCL
|
| Big East final |
3 p.m. |
ESPN
|
| WAC final |
4 p.m. |
ESPN2
|
| Mountain West final |
5 p.m. |
ESPN
|
| Big West final |
7 p.m. |
ESPN
|
BASKETBALL -- COLLEGE WOMEN
|
| Big West final |
11 a.m. |
FSW2
|
| Big 12 final* |
6 p.m. |
FSW
|
| Mountain West final* |
7 p.m. |
ESPN2
|
BOWLING
|
| Hawaii TV Bowling |
4 p.m. |
KWHE
|
GOLF
|
| Singapore Masters* |
4 a.m. |
GLF
|
| Barton Creek Challenge |
9 a.m. |
GLF
|
| Honda Classic |
10 a.m. |
KHNL
|
| MasterCard Classic |
11 a.m. |
GLF
|
| AT&T Classic* |
1 p.m. |
GLF
|
HOCKEY -- PRO
|
| Kings at Blues |
3 p.m. |
FSW
|
| Mighty Ducks at Coyotes |
4 p.m. |
FSW2
|
SOFTBALL
|
| Chaminade vs. Hawaii Pacific |
5 p.m. |
OC16
|
VOLLEYBALL -- COLLEGE MEN
|
| UCLA at Hawaii |
7 p.m. |
KFVE
|
| UCLA at Hawaii* |
10:30 p.m. |
KFVE |
|
TALK SHOWS
|
| The Golf Club (Oahu) |
7 a.m. |
|
1500-AM
|
| The Golf Club (Hilo) |
7 a.m. |
|
670-AM
|
| The Golf Club (Kauai) |
7 a.m. |
|
99.9-FM
|
| The Golf Club (Maui) |
7 a.m. |
|
104.7-FM |
|
Inside | " . $monthNday . "
";
// INITIALIZE COUNTERS
$nws = 0; $fts = 0; $trv = 0; $spt = 0; $biz = 0; $edt = 0;
// OPEN FLAT-FILE READ-ONLY
$fp = fopen('../fDB_indexstories.txt','r'); // All columnists are stored in a flat-file in subdirectory 'inc_files'
// CHECK FLAT-FILE EXISTS
if (!$fp) { $allstories = "ERROR: File 'fDB_indexstories.txt' could not be found!\n"; print $allstories; exit;}
// PARSE FLAT-FILE
while (!feof($fp)) {
$line = fgets($fp, 2048);
list($iS_vis, $iS_sec, $iS_ord, $iS_filename, $iS_headline) = explode('===', $line);
// HAWAII NEWS
if ($stat_nws == 'Y') {
// STORIES
if ($iS_sec == 'nws' && $iS_vis == ' Y' /* && $iS_ord == 'sto' */) {
$nws++;
displaySection($nws, $iS_sec);
$secPath = 'http://' . $site . $path_nws;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'nws' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $nws++;
// displaySection($nws, $iS_sec);
// $secPath = 'http://' . $site . $path_nws;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// FEATURES
if ($stat_fts == 'Y') {
// STORIES
if ($iS_sec == 'fts' && $iS_vis == ' Y') {
$fts++;
displaySection($fts, $iS_sec);
$secPath = 'http://' . $site . $path_fts;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'fts' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $fts++;
// displaySection($fts, $iS_sec);
// $secPath = 'http://' . $site . $path_fts;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// TRAVEL
if ($stat_trv == 'Y') {
// STORIES
if ($iS_sec == 'trv' && $iS_vis == ' Y') {
$trv++;
displaySection($trv, $iS_sec);
$secPath = 'http://' . $site . $path_trv;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'trv' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $trv++;
// displaySection($trv, $iS_sec);
// $secPath = 'http://' . $site . $path_trv;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// SPORTS
if ($stat_spt == 'Y') {
// STORIES
if ($iS_sec == 'spt' && $iS_vis == ' Y') {
$spt++;
displaySection($spt, $iS_sec);
$secPath = 'http://' . $site . $path_spt;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'spt' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $spt++;
// displaySection($spt, $iS_sec);
// $secPath = 'http://' . $site . $path_spt;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// BUSINESS
if ($stat_biz == 'Y') {
// STORIES
if ($iS_sec == 'biz' && $iS_vis == ' Y') {
$biz++;
displaySection($biz, $iS_sec);
$secPath = 'http://' . $site . $path_biz;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'biz' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $biz++;
// displaySection($biz, $iS_sec);
// $secPath = 'http://' . $site . $path_biz;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// EDITORIAL
if ($stat_edt == 'Y') {
// STORIES
if ($iS_sec == 'edt' && $iS_vis == ' Y') {
$edt++;
displaySection($edt, $iS_sec);
$secPath = 'http://' . $site . $path_edt;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'edt' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $edt++;
// displaySection($edt, $iS_sec);
// $secPath = 'http://' . $site . $path_edt;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
// SPECIAL
if ($stat_spc == 'Y') {
// STORIES
if ($iS_sec == 'spc' && $iS_vis == ' Y') {
$spc++;
displaySection($spc, $iS_sec);
$secPath = 'http://' . $site . $path_spc;
displayStory($secPath, $iS_filename, $iS_headline);
}
// BRIEFS
// if ($iS_sec == 'spc' && $iS_vis == ' Y' && $iS_ord == 'brf') {
// $spc++;
// displaySection($spc, $iS_sec);
// $secPath = 'http://' . $site . $path_spc;
// displayStory($secPath, $iS_filename, $iS_headline);
// }
}
$fp++;
}
// CLOSE FLAT-FILE
fclose($fp);
$allstories .= "
";
// Output to static file
$output = isset($_GET['output']);
if ($output == 'static') {
$myfile = '../indexai.html';
if ($file = fopen($myfile, 'w+')) { // Open file for writing
fwrite($file, $allstories);
print "SUCCESS! Output to file 'indexai.html' complete.";
} else {
print "ERROR! Unable to output to file!";
}
}
// Display output to browser
print $allstories;
?>
|
S-B Photographers | |
Susan Scott | |
Corky Trinidad | |
John Berger | |
Jason Genegabus | |
Kalani Simpson | |
Erika Engle | |
Corky Trinidad |
Tools
|