Guest

tonyukuk

By: a guest on Sep 3rd, 2010  |  syntax: None  |  size: 0.99 KB  |  hits: 38  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. bibince this is the code to get content from rss Feed:
  2. [code]        
  3. <x:forEach begin="0" end="4" var="story"
  4.                    select="$doc/rss/channel/item" varStatus="status">
  5.             <div class="kategorihaberleri">
  6.                   <div class="row" onclick="location.href='<x:out select="link" escapeXml="false"/>'">
  7.                 <table id="feed" cellspacing="0" cellpadding="2" class="haberon">
  8.                     <tbody>
  9.                         <tr>
  10.                             <td valign="top" class="kresim">
  11.                     <img src=" <x:out select="image" /> "></td>
  12.                         <td valign="top" style="vertical-align: top;">
  13.                             <h2><x:out select="title" /></h2>
  14.                             <x:out select="description" escapeXml="false"/>
  15.                         </td>
  16.                         </tr>
  17.                         </tbody>
  18.                 </table>
  19.                   </div>
  20.             </div>
  21.             </x:forEach>
  22. [/code]