Home >php教程 >php手册 >php生成rss订阅

php生成rss订阅

WBOY
WBOYOriginal
2016-06-13 08:50:14794browse

php生成rss订阅

//$news为重数据库里取出的数组

$host = $_SERVER['HTTP_HOST'];

$xmls = '

';

foreach ($news as $keys => $values) {

//foreach ($values as $key1 => $value1) {

$xmls .= "".$values["title"].""; 

        $xmls .= "http://$host/news.php?id=".$values['id']."";

        //$xmls .= "";

        //$xmls .= "".$values["addtime"]."";

        $xmls .= "$host";

        //$xmls .= "".$values["addtime"]."";

        $xmls .=  "";

        //$xmls .= "";

//}

}

$xmls .= "";

echo $xmls;

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn