Login   Register  
PHP Classes
elePHPant
Icontem

File: test_score.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Jojo Evangelista  >  Score Scraper  >  test_score.php  >  Download  
File: test_score.php
Role: Example script
Content type: text/plain
Description: sample php usage
Class: Score Scraper
Retrieve scores of Major US Sports Leagues
Author: By
Last change:
Date: 2006-11-09 21:01
Size: 1,650 bytes
 

Contents

Class file image Download
<html>
<head>
<Title>Test for Score Scraper Class by Dyodyo</Title>

</head>
<body>
    <div>
        <form method="POST" action="test_score.php">
            Get Scores For:
            <select name='league'>
                <option value='nba'>NBA</option>
                <option value='nfl'>NFL</option>
                <option value='nhl'>NHL</option>
                <option value='mlb'>MLB</option>
                <option value='ncf'>NCAA Football</option>
                <option value='ncb'>NCAA Basketball</option>
            </select><br>
            <input type="submit" value="submit">
        </form>
    </div>
    <div>
<?php
 
require_once ("class_ScoreScraper.php");
 
// $_POST['league'] = 'nhl';
 
 
if ( (isset($_POST['league']))){
     
$ss = new ScoreScraper();
     
$league $_POST['league'];
     if (!
$ss->fetchScore($league)) {
         echo 
$this->error."<br>";
     }
    echo 
"Fetching Scores for <b>".strtoupper($league)."</b><br><br>";
     
//write the scores to the screen
     
if ((is_array($ss->scores)) && (count($ss->scores)>0)) {
         foreach (
$ss->scores as $score){
             echo 
"Game date: ".date("m-d-y"$score['gameDate'])."<br>";
             echo 
"Game started? ".($score['isStarted']?"Yes":"No")."<br>";
             if (
$score['isStarted']) {
                 echo 
"Period: ".$score['periodRemain'].' - '.$score['period']."<br>";
                 echo 
"Home: ".$score['homeTeam']." - ".$score['homeTeamScore']."<br>";
                 echo 
"Visitor: ".$score['awayTeam']." - ".$score['awayTeamScore']."<br>";
             } else {
                 echo 
"Game Time: ".$score['gameTime']."<br>";
                 echo 
$score['awayTeam']." at ".$score['homeTeam']."<br>";
             }
             echo 
"<br>";
         }
     } else {
         
// scores variable is invalid, it would mean that there are no games today...
         
echo $ss->error."<br>";
     }
 }
?>
    </div>
</body>
</html>