FAQ |
Kalender |
|
![]() |
#1 | ||
|
|||
Har WN som tidsfördriv
|
kommer funka om du sätter header som Jimpsson skrev!
|
||
![]() |
![]() |
![]() |
#2 | ||
|
|||
Flitig postare
|
Så det här kommer att funka?
<?php header("Content-Type: application/xml; charset=utf-8"); echo '<?xml version="1.0" encoding="utf-8" ?>'; echo '<rss version="2.0">'; echo '<channel>'; echo '<title>En fin rsskanal</title>'; echo '<link>http://minrss.se/minrss.php</link>'; echo '<description>Här delar jag med mig av min fina blogg</description>'; $query = ("SELECT * FROM mindatabas ORDER BY id DESC"); $result = mysql_query($query) or die(mysql_error()); while($row = mysql_fetch_array($result)) { echo '<item>'; echo '<title>' . $row['itemTitle'] . '</title>'; echo '<link>' . $row['itemLink'] . '</link>'; echo '<description>' . $row['itemDesc'] . '</description>'; echo '</item>'; } echo '</channel>'; echo '</rss>'; ?> |
||
![]() |
![]() |
Svara |
|
|