The code bellow is what I'm currently using to display content on my websites main page. I'd like to add the thread starters display picture as a smaller thumb to the left of each one. What code would I have to add to get this? The code / js would need to go where the '
insert image code here' comment is.
HTML Code:
<table cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tbody>
<tr>
<td width="40%">
<!--insert image code here-->
</td>
<td width="100%">
<div>
<script type="text/javascript" src="forum/external.php?type=js"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 6; x++)
{
document.writeln("<dd><p>Posted By: "+threads[x].poster+"</p><a href=\"forum/showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+" </em> <span></span></a></dd>");
}
//-->
</script></div>
</td>
</tr>
</tbody>
</table>>
</table>
What I currently have:
PS. I posted it here in VB3 because where I got the original code from said it was VB3 stable.. I'm using VB4.. I don't think it really matters, but yeah..