Quote:
Originally posted by Lionel
have you tried that:
<?
$fd= fread(fopen("http://www.site.com/forum/page.php", "r"), 100000);
if ($fd)
echo $code;
?>
this code grabs any info from any site and can be used with a starting point and an end point, making you grab only what you need, but I don't think that you need that in your case. My experience with that, it slows things down a bit, because it has to go and read from another site.
|
Thanks Lionel, but I'm using SSI.

Is there still some way I can do this?