Writing a local XML file from a parsed URL?? Similar to RSS

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • linearfusion

    #1

    Writing a local XML file from a parsed URL?? Similar to RSS

    Hello,

    I am trying to pull the XML data from the following stream:

    and write it to a local file.

    Actually, what I would like to do is take the above stream and display
    it into a website... much like displaying RSS feeds on a webpage.

    I looked at javascript, but someone there pointed me to the PHP group.
    I may not have worded the subject correctly.

    Thanks so much for any help/advice!!

    I appreciate it!!
    Shannon

  • Janwillem Borleffs

    #2
    Re: Writing a local XML file from a parsed URL?? Similar to RSS

    linearfusion wrote:[color=blue]
    > I am trying to pull the XML data from the following stream:
    > http://www.360voice.com/api/blog-get...ngeagent&num=5
    > and write it to a local file.
    >[/color]

    This can be accomplished with file_get_conten ts() combined with fopen() and
    fputs() see the manual for more information about these functions.
    [color=blue]
    > Actually, what I would like to do is take the above stream and display
    > it into a website... much like displaying RSS feeds on a webpage.
    >[/color]

    There are many ways in which you can do this, per example with XSLT; see the
    following pages for more info:

    http://www.php.net/xslt (PHP 4)
    http://www.php.net/xsl (PHP5)


    JW


    Comment

    • linearfusion

      #3
      Re: Writing a local XML file from a parsed URL?? Similar to RSS

      Thanks JW!!!!


      Janwillem Borleffs wrote:[color=blue]
      > linearfusion wrote:[color=green]
      > > I am trying to pull the XML data from the following stream:
      > > http://www.360voice.com/api/blog-get...ngeagent&num=5
      > > and write it to a local file.
      > >[/color]
      >
      > This can be accomplished with file_get_conten ts() combined with fopen() and
      > fputs() see the manual for more information about these functions.
      >[color=green]
      > > Actually, what I would like to do is take the above stream and display
      > > it into a website... much like displaying RSS feeds on a webpage.
      > >[/color]
      >
      > There are many ways in which you can do this, per example with XSLT; see the
      > following pages for more info:
      >
      > http://www.php.net/xslt (PHP 4)
      > http://www.php.net/xsl (PHP5)
      >
      >
      > JW[/color]

      Comment

      Working...