Hello Paul,
Thank you for your reply, i will try to make it clearer:
I usually pass the variables from flash to php using the following method:
1- I create an input text in flash
2- I give it an instance name (example: name)
3- I send it to PHP using this code: lv.name = name.text; (then: lv.sendAndLoad("contact.php",lv,"POST");)
4- PHP read the variables through this code: $name = $_POST['name'];
Very simple process.
In my case, i can't edit the PHP file, and the variable is "t[name]" instead of "name"
However i can't use brackets for Flash instance names, and i don't know another way to pass these variables to PHP.
Hope i made it clear, and thank you for your assistance
