Source:

<?php

mysql_connect("localhost", "username", "pass") or die(mysql_error());
mysql_select_db("theboardwalk") or die(mysql_error());

$query = "SELECT * FROM Shows";
$result = mysql_query($query);

print "<?xml version=\"1.0\"?>\n\n";
print "<shows>\n";

while($row = mysql_fetch_array($result))
{
print "<show>\n<bands>
print $row['bands'];
print "</bands>\n<description>";
print $row['show_desc'];
print "</description>\n</show>\n\n";
}

print "</shows>";

mysql_close();

?>


I am trying to get this php file to get data from a mysql database,
and output a XML sheet that can be read by FLEX


see anything wrong with the source?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to