Hey Guys,
I am trying to set a script up that will read the information from one of my tables and display it in an xml file. Here is my code. Any help would be enormously appreciated.
Thanks
Aken
<?PHP
$link = mysql_connect("localhost","username","password");
mysql_select_db("kaurlcom_messenger");
$query = 'SELECT * FROM users';
$results = mysql_query ($query);
echo "<?xml version=\"1.0\"?>\n";
echo "<users>\n";
while ($line = mysql_fetch_assoc($results)) {
echo "<username>" . $line["username"] . "</username>\n";
}
echo "</users>\n";
mysql_close($link);
?>