Useful little script, well done to the author =).
Now there's a couple of things I'd like to see/do.
1. How can I output the START DATE for the 'Latest Threads'?
2. Is it possible to save the 'Latest Threads' output to an external file. I already tried the following and it simply returned a 0 byte file. It seems since the data is already collected and requested that it should be possible, but I'm clearly missing something:
PHP Code:
$result = output_NewestThreads(5,"1,2,3");
$fp = fopen("atest.txt", "w");
fwrite($fp, $result);
fclose($fp);
PHP isn't my strong point =).