Используйте код PHP для чтения из файла .txt, а затем используйте код, подобный следующему:
function loadData():Void {
var recive:LoadVars = new LoadVars();
recive.onLoad = function(loading:Boolean):Void {
if (loading) { //if were variables succesfully loaded
trace(unescape(this)); //trace PHP variables
} else {
trace("Error!"); // if wasn't process succesfull, trace error
}
};
var send:LoadVars = new LoadVars();
send.premenna = "text"; // send to $_POST['text'] in php
send.sendAndLoad("www.web.comfile.php", recive, "POST"); //send and load variables
}
_root.tlacitko.onRelease = loadData; //do it after button is pressed
Короче, используйте loadVars для загрузки php vars.(не читать комментарии ....)