Okay, I think I see your problem. You get down to the bottom of your page and the closing </html> tag and then the page starts up all over again -
Code:
</body>
</html>
<head>
<script type="text/javascript" src="crawler.js">
/*
Text and/or Image Crawler Script �2009 John Davenport Scheuer
as first seen in http://www.dynamicdrive.com/forums/ username: jscheuer1
This Notice Must Remain for Legal Use
*/
</script>
</head>
You want to delete all of the above and insert everything between the <script> tags before the first </head> tag in the page (about line 6 or 7) :
Code:
<script type="text/javascript" src="crawler.js">
/*
Text and/or Image Crawler Script �2009 John Davenport Scheuer
as first seen in http://www.dynamicdrive.com/forums/ username: jscheuer1
This Notice Must Remain for Legal Use
*/
</script>
That should do it
Bookmarks