How to crawl a website to fetch certain datas? For ex. if i crawl carwale.com, then I should get Name of the Car, Make, Model, Price,Contact email, contact name, images and store the same in a database. Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
phpcrawl just delivers the page-content (html-source) to you. If you want to extreact special parts/data from it, you'll have to do it yourself, it's not part of phpcrawl.
Just use some regular expressions or a DOM-parser to do that, it normally shouldn't be to a big problrem.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How to crawl a website to fetch certain datas? For ex. if i crawl carwale.com, then I should get Name of the Car, Make, Model, Price,Contact email, contact name, images and store the same in a database. Thanks.
Hi!
phpcrawl just delivers the page-content (html-source) to you. If you want to extreact special parts/data from it, you'll have to do it yourself, it's not part of phpcrawl.
Just use some regular expressions or a DOM-parser to do that, it normally shouldn't be to a big problrem.