chery Posted June 7, 2007 Share Posted June 7, 2007 Hi there, I created a simple php file which extracts data from a field in one of my tables: <?php $sql = "SELECT * FROM phpbb_ina_games ORDER BY game_desc ASC"; $query = mysql_query($sql); while($row = mysql_fetch_array($query)) { echo "<tr>"; echo "<td align=center bgcolor=#DAE4EC border=1><font size=2>".$row['game_desc']."</td>"; echo "</tr>"; } ?> I want to create an rss feed from this page or from the data at least - does anyone have any idea on how this could be accomplished? Any help would be much appreciated as it has me stumped. Link to comment https://forums.phpfreaks.com/topic/54600-how-do-i-make-a-rss-feed-from-a-mysql_fetch_array-in-a-php-page/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.