I need a php web scraper to scrape a website that generates its content through javascript.
When using Firebug for Mozilla and view the DOM Source I can see the data that needs to be extracted.
What needs to be done:
– Use PHP Simple HTML DOM Parser found here http://simplehtmldom.sourceforge.net/ (or use your own) and create a scraper that will take links (all for the same website, just different pages) and scrape the required information and save it to a file or database.
See attache…
