Hi thier im using aero skin for my forum and i was wondering if i could not show the latest threads, but the latest threads from one pacifc forum.
i think you may have to edit the latest thread php?m this is it
ctr = 0;
for (x in threads)
{
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a><br />");
ctr++;
if (ctr == 8)
{
break;
}
}
this is the forum i wish to display the latest threads from
http://www.micforum.com/forum/forumdisplay.php?f=9
thanks very much for your help..
anyone?