Go Back   Cyber Tech Help Support Forums > Software > Web Development & Graphic Design

Notices

Web Development & Graphic Design Problem Solving for Graphic Design, PHP, ASP, Perl, MySQL, SQL, XML, HTML issues

Reply
 
Topic Tools
  #1  
Old January 17th, 2005, 02:31 AM
Hardliner Hardliner is offline
New Member
 
Join Date: Nov 2004
O/S: Windows 7 64-bit
Location: Texas
Age: 48
Posts: 12
RSS Feeds

I'm trying to setup my personal web site with some RSS Feeds and I am needing some assistance on getting this setup. I grabbed the Magpie Parser but I'm not sure what to do from there. I understand basic HTML, use FrontPage & Dreamweaver for my HTML work, and I guess that's about it. Any help is appreciated.
Reply With Quote
  #2  
Old January 17th, 2005, 03:47 AM
degsy's Avatar
degsy degsy is offline
Cyber Tech Help Moderator
 
Join Date: Jul 2001
Location: North-East, UK
Posts: 22,475
You need to give more info about the code and what you want to achieve.
Reply With Quote
  #3  
Old January 17th, 2005, 09:39 PM
Hardliner Hardliner is offline
New Member
 
Join Date: Nov 2004
O/S: Windows 7 64-bit
Location: Texas
Age: 48
Posts: 12
Quote:
Originally Posted by degsy
You need to give more info about the code and what you want to achieve.
I do not know what you mean about more info about the code. I know that the plug in is used in XML and something about PHP but that's all I understand about it.

I am hoping to achieve having certain RSS feeds to display on my web site.
Reply With Quote
  #4  
Old January 17th, 2005, 11:41 PM
degsy's Avatar
degsy degsy is offline
Cyber Tech Help Moderator
 
Join Date: Jul 2001
Location: North-East, UK
Posts: 22,475
it gives you an example in the INSTALL file.

Upload the files and then add the code into your PHP script.
Here is an example to show the CTH RSS feed
PHP Code:
<?
require_once('magpierss/rss_fetch.inc');
 $url = 'http://www.cybertechhelp.com/forums/external.php?type=rss';
 $rss = fetch_rss( $url );
 
 echo "Channel Title: " . $rss->channel['title'] . "<p>";
 echo "<ul>";
 foreach ($rss->items as $item) {
  $href = $item['link'];
  $title = $item['title'];
  echo "<li><a href=$href>$title</a></li>";
 }
 echo "</ul>";
 ?>
Reply With Quote
  #5  
Old January 17th, 2005, 11:57 PM
degsy's Avatar
degsy degsy is offline
Cyber Tech Help Moderator
 
Join Date: Jul 2001
Location: North-East, UK
Posts: 22,475
example http://www.degs.co.uk/test/rss/rss.php
Reply With Quote
Reply

Bookmarks

Topic 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

Forum Jump

Similar Topics
Topic Topic Starter Forum Replies Last Post
how to set up a RSS feeds btti123 Web Development & Graphic Design 2 March 30th, 2008 10:18 PM
RSS feeds Cerdarad Internet / Browsers 3 January 23rd, 2008 12:32 PM
RSS feeds jmtjet Internet / Browsers 0 February 11th, 2007 05:58 PM
Rss Feeds dudeking Internet / Browsers 4 March 16th, 2006 07:26 PM
The SA that feeds The Dude Open Discussion 0 May 19th, 2005 07:49 AM


All times are GMT +1. The time now is 06:07 AM.