目前,我有一本PHP书,在生产XML文档时(无论作为饲料)。 php没有饲料。 我被告知,在我的接触中,我还要补充这一点。
AddType application/x-httpd-php .xml
然而,出于某种原因,那就没有工作。
我完全喜欢用文字做些什么——如果是产生一个含有其内容产出的饲料——xml文档,而不是仅仅将内容投放到文件箱上。
我的守则是:
<?PHP
include("../config.php");
#// Timetable Clearup Variabls
$yesterday = strtotime( yesterday );
$yesterdow = date( l ,$yesterday);
$order = "SELECT * FROM timetable WHERE day = $yesterdow ORDER BY time";
$result = mysql_query($order);
$yesterdayd = date( F jS, Y , time()-86400);
//SET XML HEADER
header( Content-type: text/xml );
//CONSTRUCT RSS FEED HEADERS
$output = <rss version="2.0"> ;
$output .= <channel> ;
$output .= "<title>Timetable - {$yesterdayd} </title>";
$output .= <description>Timetable.</description> ;
$output .= <link>http://site.com/</link> ;
### $output .= <copyright>Your copyright details</copyright> ;
while ($row = mysql_fetch_array($result)) {
//BODY OF RSS FEED
$output .= <item> ;
$output .= "<description><td>" . htmlspecialchars($row[ username ]) . "</td><td>" . htmlspecialchars($row[ time ]) . "</td></description>";
$output .= </item> ;
}
//CLOSE RSS FEED
$output .= </channel> ;
$output .= </rss> ;
//SEND COMPLETE RSS FEED TO BROWSER
echo($output);
?>