fiordo
01-08-2002, 02:59 PM
Hi all,
This is my new PHP file:
<?
$fp = fopen("showcase.xml","w+");
$prova = stripslashes($exp); // new string
fwrite($fp,$prova);
fclose($fp);
?>
These are my new AS :
on (release) {
mioXML = new XML(provaXML);
mioXML.firstChild.childNodes[sezione].childNodes[progetto].attributes[testo_
1] = testo_01;
exp = mioXML.toString();
loadVariablesNum ("miofile.php", 0, "POST");
}
This is my XML file:
<showcase>
<automotive>
<progetto_1 testo_1="text to change" ></progetto_1>
</automotive>
</showcase>
Now all work right with loadVariable, but my only issue is use send(), i
don't understand the use of it.
P.S.: When i digit some attributes text and use enter botton, the XML text is not visible.
What i do ?
Thanks
Roberto
This is my new PHP file:
<?
$fp = fopen("showcase.xml","w+");
$prova = stripslashes($exp); // new string
fwrite($fp,$prova);
fclose($fp);
?>
These are my new AS :
on (release) {
mioXML = new XML(provaXML);
mioXML.firstChild.childNodes[sezione].childNodes[progetto].attributes[testo_
1] = testo_01;
exp = mioXML.toString();
loadVariablesNum ("miofile.php", 0, "POST");
}
This is my XML file:
<showcase>
<automotive>
<progetto_1 testo_1="text to change" ></progetto_1>
</automotive>
</showcase>
Now all work right with loadVariable, but my only issue is use send(), i
don't understand the use of it.
P.S.: When i digit some attributes text and use enter botton, the XML text is not visible.
What i do ?
Thanks
Roberto