Quote:
Originally Posted by satimis Can I add another RSS feed? I.E. 2 feeds on the same webpage? |
You can add a comma seperated list of feeds at this point note no comma after the last one
Code:
// List of RSS URLs
$rss_left = array(
'http://www.rte.ie/rss/gaa.xml',
'http://www.freshfolder.com/rss.php',
'http://www.kinomol.cz/rss.php'
Quote:
Originally Posted by satimis OR if 2) above is impossible, then how to change the feed? |
Code:
// List of RSS URLs
$rss_left = array(
'http://www.rte.ie/rss/gaa.xml',
you can also edit your list from here
Quote:
Originally Posted by satimis The news lines are static. How to make the news lines scrolling on a box? |
for the scroller you will need to remove the right side feeds remove these two lines from the php code
Code:
foreach ($rss_right as $url) ShowOneRSS($url);
echo '</td></tr></table>';
now set up your JS in the page header
and in the body set up your marquee
Code:
<div id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">
<div id="vmarquee" style="position: absolute; width: 98%;">
place your php code here
</div>
</div>
probebley not the best Solution out there but its a start
Mick