coldkill Posted January 17, 2007 Share Posted January 17, 2007 Hello all!I'd like to know if it's possible to create a PHP script to read a page. I'm looking for one to create a dynamic signature from stats on a webpage. If so how can it be done? Any help would be much appreciated.Thanks,Coldkill Link to comment https://forums.phpfreaks.com/topic/34498-php-script-to-read-pages/ Share on other sites More sharing options...
utexas_pjm Posted January 17, 2007 Share Posted January 17, 2007 You can get the raw html of a site like this:[code]<?php$out = readfile('http://www.google.com');?>[/code]Parsing the meaningful data is up to you.Best,Patrick Link to comment https://forums.phpfreaks.com/topic/34498-php-script-to-read-pages/#findComment-162512 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.