Alright, Ill start working on them and see if its going to work or not...Thank You!
Alright, I am checking
http://www.vbulletin.com/forum/showp...58&postcount=1 because I think this is what i'm looking for...
I'm quite confused. Which one should I use? or where do I put all these codes at?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>External JS Printing</title>
</head>
<body>
<script type="text/javascript" src="http://www.iris-studios.com/gkwc/external.php?type=js"></script>
<script type="text/javascript">
<!--
for (var i = 0; i < threads.length; i++)
{
document.write('<a href="http://www.iris-studios.com/gkwc/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</a> <em>Posted on: ' + threads[i]['threaddate'] + ' by ' + threads[i]['threadtime'] + '</em><br />');
}
//-->
</script>
</body>
</html>
Or/And?
Code:
<script type="text/javascript" src="http://www.iris-studios.com/gkwc/external.php?type=js"></script>
Or/And
Code:
<script type="text/javascript">
<!--
for (var i = 0; i < threads.length; i++)
{
document.write('<a href="http://www.iris-studios.com/gkwc/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</a> <em>Posted on: ' + threads[i]['threaddate'] + ' by ' + threads[i]['threadtime'] + '</em><br />');
}
//-->
</script>
Since there are like 3 codes, I am quite confused what I should do with each...
Please guide me, Thank you!