okay so that error is due to having less than 15 threads in the forum being called
i got it working with this code thanks to your generator
saved the below code in a file named last15.php
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>Example code</TITLE>
</HEAD>
<BODY>
<script type="text/javascript" src="http://forumdomain.com/external.php?forumids=<?php echo($fid); ?>&type=js"></script>
<b>Last 15 threads :</b>
<ul>
<script type="text/javascript">
<!--
for (i = 0; i < 15; i++)
{
if (threads[i].title.length > 60)
{ threads[i].title = threads[i].title.substring(0,60) + '...'; }
document.writeln("<li><a href=\"http://forumdomain.com/showthread.php?t=" + threads[i].threadid + "\">" + threads[i].title + "</a> (" + threads[i].poster + " : " + threads[i].threaddate + " : " + threads[i].threadtime + ") </li>");
}
//-->
</script>
</ul>
</BODY>
</HTML>
then used last15.php?fid=XX
where fid is the forumid i want to call