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

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

WBOY
Release: 2016-06-20 12:33:10
Original
1171 people have browsed it

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

 



Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template