Hi, I'd like to know how to "pull" dynamically generated page on other site to my site and parse it so I can extract some information there. I've tried using fsockopen function, but it didn't seem to work. What else can I do ?
Thanks a lot
U have to open the page of the other site like a normal file.
Example with www.yahoo.com:
<? $in=fopen("http://www.yahoo.com","r"); while (!(feof($in)) { $x=fgets($in,4096); echo $x; } ?>