我正在尝试将 rss 提要添加到我的网站。不同的主题有不同的 RSS 提要。我不知道该怎么做是允许用户订阅 rss 提要?我想放一个链接,上面写着“订阅 rss 提要”或只是 rss 图标。 Feed.php
有 rss 提要,因此将根据$id
不同的 rss 提要显示。
饲料.php
<?php
header("Content-Type: application/xml; charset=ISO-8859-1");
include "database.php";
$id = $_GET['id'];
$type = $_GET['type'];
$position = $_GET['position'];
$database = new Database();
$database->opendb();
$items = $database->rssfeed($id,$position,$type);
$database->closedb();
?>
<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
<?php
echo $items;
?>
</channel>
</rss>
我允许用户订阅 rss 提要的方式是什么?例如,我网站上某个主题的提要 URL 可能是www.example.com/feed/12