Home  >  Article  >  php教程  >  php生成rss订阅_PHP教程_编程技术

php生成rss订阅_PHP教程_编程技术

WBOY
WBOYOriginal
2016-06-20 12:33:101153browse

//$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