XML
  Home arrow XML arrow Page 2 - Creating an RSS Reader Application
Dev Shed Forums 
Administration  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Download TestComplete 
VPS Hosting 
Weekly Newsletter

 
Developer Updates  
Free Website Content 
eWeek
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
XML

Creating an RSS Reader Application
By: Jacques Noah
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 7
    2007-02-20

    Table of Contents:
  • Creating an RSS Reader Application
  • Code
  • Parsing the RSS document
  • Creating an enhanced RSS document

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
     
    ADVERTISEMENT

    Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here

    Creating an RSS Reader Application - Code
    (Page 2 of 4 )

    The logical way to create an application to automate the building of an RSS document would be to offer the user a choice between creating an Enhanced RSS document or a Simple RSS document, and then to proceed from there.

    So let's create a PHP page with a navigation bar on the left that will contain two links: 

    1. Read an RSS document
    2. Create an RSS document

    The idea is to use one page on which we do everything, so we are going to create a few functions to display information according to whichever link a user has selected.

    When the "Read RSS document" link is pressed, the "showfrm" function is activated; it then displays a form requesting the name of the RSS document to be opened.  Once you've entered and submitted the document name, a function called "showparsedContents" is called; it then parses the document. Below are the showfrm and showparsedContents() functions:

    function showfrm(){
     
    echo '<form id="form1" name="form1" method="post"
    action="' .$_SERVER['PHP_SELF'].'?action=parse">
     
    <table width="100%" border="0" cellspacing="1">
       
    <tr>
     
        <td>&nbsp;</td>
     
        <td width="31%">&nbsp;</td>
     
        <td width="48%">&nbsp;</td>
     
      </tr>
     
      <tr>
     
        <td width="21%" valign="top"><span class="style1">RSS
    Document Location: </span></td>
     
        <td colspan="2" valign="top"><input name="location"
    type="text" id="location" size="80" /></td>
        </tr>
     
      <tr>
     
        <td>&nbsp;</td>
     
        <td>&nbsp;</td>
     
        <td>&nbsp;</td>
     
      </tr>
     
      <tr>
     
        <td>&nbsp;</td>
     
        <td><input type="submit" name="Submit"
    value="Submit" /></td>
     
        <td>&nbsp;</td>
      
     </tr>
     
    </table>';

      echo '</form>';
    }

    Here's a example of the outcome of this function:

    Fig 1. A form that request RSS document name to parse...

    More XML Articles
    More By Jacques Noah


       · Hope you enjoyed my article. Any comments are very welcome
     

       

    XML ARTICLES

    - How to Set Up Podcasting and Vodcasting
    - Creating an RSS Reader Application
    - Building an RSS File
    - An Introduction to XUL Part 6
    - An Introduction to XUL Part 5
    - An Introduction to XUL Part 4
    - An Introduction to XUL Part 3
    - An Introduction to XUL Part 2
    - An Introduction to XUL Part 1
    - XML Matters: Practical XML Data Design and M...
    - Practical XML Data Design and Manipulation f...
    - SimpleXML
    - XForms Basics, Part 3
    - XForms Basics, Part 2
    - XForms Basics




    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway