Hm... Yeah... This one looks real good....
I have read your advertisement from the ActionScript.org, BTW...
I think this has to do with Massimo's question, but I'd ask again...
I am not quite following your sample data... It looks like an XML file to me... Are you saying that this Chat program will read an XML file that has database information, and it should be able to read the PHPNuke's forum database or the phpBB in my case???
I'd love to hear whether what I said is right or not...
And, one suggestion if I may...
The phpBB contains a data file which is basically a text file named config.php with this content in it...
Code:
<?php
// phpBB 2.x auto-generated config file
// Do not change anything in this file!
$dbms = 'mysql';
$dbhost = 'localhost';
$dbname = 'flashvacuum_com';
$dbuser = 'theusername';
$dbpasswd = 'thepassword';
$table_prefix = 'phpbb_';
define('PHPBB_INSTALLED', true);
?>
and I am sure other related softwares should have the similar ways of storing this data...
Maybe you can utilize this sort of data and then have the Chat automatically read the information based on this???
Just my 2cents...
