Page 1 of 1
RSS FlatPressForum widget
Posted: Sun Dec 22, 2024 8:03 pm
by Lubomír Ludvík
Widget create with
https://rss.app from
feed/rss2
Code: Select all
<iframe width=”800” height=”500” src=”https://rss.app/embed/v1/feed/xeLKa4jg6jhRnw7V” frameborder=”0”></iframe>
Simple rssread widget
Posted: Sun Dec 22, 2024 11:40 pm
by Lubomír Ludvík
source rssread.php
<?php
$rss = $_GET['rss'];
$rss = simplexml_load_file($rss);
echo '<h1>'. $rss->channel->title . '</h1>';
foreach ($rss->channel->item as $item) {
echo '<h2><a href="'. $item->link .'">' . $item->title . "</a></h2>";
echo "<p>" . $item->pubDate . "</p>";
echo "<p>" . $item->description . "</p>";
}
?>
example:
https://solarcz.eu/programy/php_kody/rs ... =feed:rss2
Re: RSS FlatPressForum widget
Posted: Mon Aug 04, 2025 11:29 am
by Arvid
Ahoj Lubomír,
where do you use that widget?
I for myself prefer local programs to consume RSS feeds. There are dedicated RSS apps, and mail clients such as Thunderbird and even Outlook are capable of subscribing to RSS feeds.
All the best,
Arvid