
tonyukuk
By: a guest on Sep 3rd, 2010 | syntax:
None | size: 0.99 KB | hits: 38 | expires: Never
bibince this is the code to get content from rss Feed:
[code]
<x:forEach begin="0" end="4" var="story"
select="$doc/rss/channel/item" varStatus="status">
<div class="kategorihaberleri">
<div class="row" onclick="location.href='<x:out select="link" escapeXml="false"/>'">
<table id="feed" cellspacing="0" cellpadding="2" class="haberon">
<tbody>
<tr>
<td valign="top" class="kresim">
<img src=" <x:out select="image" /> "></td>
<td valign="top" style="vertical-align: top;">
<h2><x:out select="title" /></h2>
<x:out select="description" escapeXml="false"/>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</x:forEach>
[/code]