Just use an include where it calls for this:
Code:
<div id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">
<div id="vmarquee" style="position: absolute; width: 98%;">
<!--YOUR SCROLL CONTENT HERE-->
<h4>Your scroller contents</h4>
<!--YOUR SCROLL CONTENT HERE-->
</div>
</div>
like:
Code:
<div id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">
<div id="vmarquee" style="position: absolute; width: 98%;">
<!--YOUR SCROLL CONTENT HERE-->
<?php
include 'content.php';
?>
<!--YOUR SCROLL CONTENT HERE-->
</div>
</div>
Your top page with the javascript and the above on it will need the .php extension unless your server parses .htm and .html as PHP (most don't). The content.php can be just ordinary text or HTML, but can have valid PHP code on it if you like.
For more on the PHP include:
http://www.google.com/search?hl=en&c...de&btnG=Search
Bookmarks