Quote:
Originally posted by LanciaStratos
Well, is there any way I can use this on another site? My forums are at http://forums.gtplanet.net, but I want to show the last 10 threads on my homepage, http://www.gtplanet.net. I've tried all kinds of little tricks, but none of them work. Can anyone help?
|
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.