ciao,
ho seguito questo tutorial , scaricato i file e cabiato i percorsi...ma il problema è nel php:
Codice PHP:
<?php
//Capture data from $_POST array
$myxml = $GLOBALS['HTTP_RAW_POST_DATA'];
//Make one big string in a format Flash understand
//Open a file in write mode
$fp = fopen("value.xml", "w");
$ok = fwrite($fp, $myxml);
fclose($fp);
if ($ok)
header('Location:Display.html');
else
header('Location:EnterValue.html');
?>
diffatti il salvataggio non va a buon fine... a cosa può essere dovuto?
thanx