Skip to content

Commit

Permalink
Update scraper.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepkumargali committed Apr 9, 2014
1 parent a78cee5 commit 8c25988
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scraper.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

var_dump($match);
// Prepare Overall Record
if(array_key_exists('team1', $match))
if(array_key_exists('team1', $match)){
$allrecord=array(
'matchId'=> $match["matchId"]["name"],
'venueCity'=> $match["venue"]["city"],
Expand All @@ -37,7 +37,8 @@

);

scraperwiki::save_sqlite(array('matchId','venueCity'), $allrecord);
scraperwiki::save_sqlite(array('matchId','venueCity'), $allrecord);
}
}

}
Expand Down

0 comments on commit 8c25988

Please sign in to comment.