Quote:
Originally Posted by okrogius
sure, using this getitng yoru threads can be as simple as:
PHP Code:
<?php
$threads = unserialize(file_get_contents('http://www.example.com/external.php?type=php'));
for ($i=0; $<count($threads); $i++) {
echo 'thread: '.$threads[$i]['title'].'<br />';
}
?>
|
That's what I was hoping to see.
I'll give it a go and see how the results turn out.
Thanks.