Reputation: 11
How can i parse values from the scoreboard of http://www.cricinfo.com/nzvaus2010/engine/current/match/423789.html
But how it could be managed? i am stuck how to fetch data and store it in database
Upvotes: 1
Views: 217
Reputation: 1
Not sure how much data you are trying to get but there is an rss feed on the site http://www.cricinfo.com/rss/livescores.xml
Upvotes: 0
Reputation: 3734
It won't be easy, looking at the source of the page, it's all dynamic. You're going to have to pull the javascript apart to figure out where it's getting it's data from and use that. Conveniently, it's written in jquery.
Upvotes: 0