Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I am trying to retrieve RSS feed using PHP and javascript.

I can get RSS feeds by using PHP but I want to create DOM elements for RSS feed using javascript. I am not sure how to complete this. Could anyone share some tips? Thanks a lot.

PHP

    function parse_rss_feed($url){
        $contents= file_get_contents($url);
        $xmlStr= simplexml_load_string($contents);
        return $xmlStr;
    }

    function get_rss_feed($xmlStr){

         echo '<ul>';

          foreach ($xmlStr->item as $node):

              //I want to transfer my RSS value to my javascript....

                $title=$node->title;
                $author=$node->creator;

                $desc=$node->description; 

           endforeach;

            echo '</ul>';

      }

html

 <head>
     <script type="text/javascript" src="js/slideshow.js"></script>
</head>
<body>
   <?php
     include 'getFeed.php';
     parse_rss_feed('http://myRSSFeed')
     get_rss_feed($xmlStr)
   ?>
</body>

slideshow.js

var rss=document.createElement('artical');

//How do I get the value from my php...
rss.innerHtml=.......???
share|improve this question
something like: document.createElement('ul'); – SiGanteng Jul 5 '12 at 4:21
@Jerry: You're missing a second single quote in the parameter to document.createElement. – C0deH4cker Jul 5 '12 at 4:44
@C0deH4cker Thanks for the help. little typo there. – FlyingCat Jul 5 '12 at 4:46
Yup. That's not the problem, but just thought I'd point it out. – C0deH4cker Jul 5 '12 at 4:47
@CwdeH4cker would you be able to help me for my problem? Please see my updated question. TY. – FlyingCat Jul 5 '12 at 4:54

1 Answer

Couldn't be easier, createElement().

var el = document.createElement('div')

Edit:

To mix JavaScript with PHP just escape it as you'd usually do but I suggest if you're doing something serious to learn about AJAX.

?>
<script>
  var foo = <?php echo 'baz' ?>
</script>
<?php
share|improve this answer
I understand I can use createElement to create DOM but not sure how to integrate my php code with JS. How can I transfer $node->description value under JS. +1 though. – FlyingCat Jul 5 '12 at 4:24
@Jerry see my edit – elclanrs Jul 5 '12 at 4:27
unless baz is another js variable, you've just introduced a syntax error and killed all further JS. always echo stuff out with json_encode() to ensure you're generating syntactically valid JS values. – Marc B Jul 5 '12 at 4:35
@elclanrs Thanks again, I still have trouble doing this, I also update my question. Thanks for the help. – FlyingCat Jul 5 '12 at 4:39
1  
Just don't forget to add the element to the page. – C0deH4cker Jul 5 '12 at 4:47
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.