made an html form that feeds a php script which emails the incoming data. That works fine!
I remade the form in flash and put this actionscript when somenone presses the submit button:
on (release) {
var fname = this._parent.fname.text;
var email = this._parent.email.text;
var subject = this._parent.subject.text;
var body = this._parent.body.text;
submit="submit";
getURL("tattoos_mailer.php", "", "POST");
}
When i use the form with english characters i get no problem but when i write äïêéìà ôåóô
I get something like this:
éÃÂñïñ Ãâñ áûû÷ýùúì!
I made some test and i found out that the flash form posts ©ÃÂñïñ Ãâñ áûû÷ýùúì! and not the original greek phrase!
please help me
abiprojects