hello,
i used to had a working methode but it doesn't work now, and i have no idea why.
i'd like to create a flash panel with text.
the text is kept in a txt file and sent by php to flash.
(it works fine.)
i have an other flash which is for rewrite the txt via another php.
this is what went wrong. when I'd like to update the txt it becomes empty and 0 kB.
second php:
<?php
$fa = fopen( "inputtext.txt", "w" );
fwrite( $fa, $readingdata );
fclose ( $fa );
?>
second flash:
readingdata = this.loadVariables("readingdataphp.php");
updatebutton.onRelease = function() {
_root.loadVariables("writingdataphp.php", "POST");
}
i hope you can help solving the problem. thank you!