Jump to content

how do I make a rss feed from a mysql_fetch_array in a php page


Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.