marquee rss script

This is a discussion on "marquee rss script" within the PHP Forum section. This forum, and the thread "marquee rss script are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 5th, 2007, 21:41
saltedm8's Avatar
Lead Administrator

SuperMember
Join Date: Nov 2005
Location: Always About
Age: 27
Posts: 1,281
Blog Entries: 1
Thanks: 1
Thanked 6 Times in 6 Posts
marquee rss script

Does anyone have any idea how i can get an rss feed to work with my marquee instead of just text from a php include?

thanks

Code: Select all
<style type="text/css">
<!--
#apDiv1 {
 position:absolute;
 left:82px;
 top:17px;
 width:256px;
 height:200px;
 z-index:1;
 overflow: auto;
 
 
}
-->
</style>
<div id="apDiv1">
        <marquee direction=up scrollamount="3"  loop=true height="200" <marquee onmouseover="this.stop();" onmouseout="this.start();"> 
<?php include('http://www.dailymail.co.uk/pages/text/index.html?in_page_id=1798&in_chn_id=1473&in_main_section=Health&in_sub_section=Diet%20%26%20fitness'); ?>
</marquee>
this is where the feed would come from http://feeds.feedburner.com/dailymai...n_page_id=1774 , i also need the links to work too, so people can read the rest of the story i need it to open in a blank page to the story on their website

cheers
__________________
My Recipe forum...don't click here
Last Blog Entry: Basic Advice for newbies (Feb 1st, 2008)

Last edited by saltedm8; Jul 5th, 2007 at 21:45.
Reply With Quote

  #2 (permalink)  
Old Jul 6th, 2007, 10:40
c010depunkk's Avatar
SuperMember

SuperMember
Join Date: Apr 2007
Location: Willich, Germany
Age: 20
Posts: 593
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to c010depunkk
Re: marquee rss script

You just have to replace the include with your text... Not that tricky:

PHP: Select all

<marquee direction=up scrollamount="3"  loop=true height="200" <marquee onmouseover="this.stop();" onmouseout="this.start();"> 
<?php echo("your text here"); ?>
</marquee>
or like this:

Code: Select all
<marquee direction=up scrollamount="3"  loop=true height="200" <marquee onmouseover="this.stop();" onmouseout="this.start();"> 
text from you
</marquee>
Reply With Quote
  #3 (permalink)  
Old Jul 6th, 2007, 12:49
SuperMember

SuperMember
Join Date: May 2006
Location: North West, UK
Age: 21
Posts: 1,173
Thanks: 0
Thanked 0 Times in 0 Posts
Re: marquee rss script

Marquees are bad, I'm sure. Aren't they those automatically scrolling things. They aren't desirable that's for sure.

Pete.
Reply With Quote
  #4 (permalink)  
Old Jul 6th, 2007, 14:53
saltedm8's Avatar
Lead Administrator

SuperMember
Join Date: Nov 2005
Location: Always About
Age: 27
Posts: 1,281
Blog Entries: 1
Thanks: 1
Thanked 6 Times in 6 Posts
Re: marquee rss script

sorry, i was ryther drunk when i wrote that message, what i need is a php script that will convert atom into readable format that i can use within a marquee

basically i want to turn this http://feeds.feedburner.com/dailymai...n_page_id=1774

into this
http://www.recipebite.co.uk/index.php?categoryid=21

but within a contained marquee box ( like the above code, but a feed instead )
__________________
My Recipe forum...don't click here
Last Blog Entry: Basic Advice for newbies (Feb 1st, 2008)
Reply With Quote
Reply

Tags
marquee, rss

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Php, Script MetallicWarfare Job Opportunities 0 Mar 2nd, 2008 12:07
[SOLVED] Marquee in CSS mcdanielnc89 Web Page Design 21 Nov 1st, 2007 05:19
i need help with a FMS script taietel Flash & Multimedia Forum 1 Apr 6th, 2007 14:56
Asp script tolis Classic ASP 0 Feb 3rd, 2007 13:28
Changes to CSS script Accurax Web Page Design 6 Dec 17th, 2006 16:36


All times are GMT. The time now is 07:36.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43