FLASH + PHP = XML
FLASH + PHP = XML
Out of context: Reply #1
- Started
- Last post
- 3 Responses
- cosmo0
$xml .= "";
$xml .= "someone";
$xml .= "";$fp = fopen("test.xml", "w");
if(!$fp)
{
die('Error cannot create XML file');
}fwrite($fp, $xml);
fclose($fp);