ditusade Posted May 18, 2006 Share Posted May 18, 2006 Hi,Just wanted to know if anyone knows how to extract data on other web sites as and when they get refreshed using PHP or other tools.E.g If I want to capture all new posting on a particular forum/feedback page and wanted to format the data for my purpose.Any suggestions will be greatly appreciatedThanksDave Quote Link to comment https://forums.phpfreaks.com/topic/9906-copying-pages-from-other-web-sites/ Share on other sites More sharing options...
.josh Posted May 18, 2006 Share Posted May 18, 2006 to get the contents of another webpage somewhere else:$content = file_get_contents('http://www.blah.com');then you will need to use something like preg_match to search $content for what you are looking for. Quote Link to comment https://forums.phpfreaks.com/topic/9906-copying-pages-from-other-web-sites/#findComment-36825 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.