how can i get the right response, i mean if i did this:
///in Flash
Data = new LoadVars();
Data.onLoad = ShowData;
Data.load("testing.php");
function ShowData() {
caption.text = Data.caption; //caption is the textfield name/var
}
///in PHP -- texting.php
<?php
$caption="Testing Flash and Php";
echo "&caption=".$caption;
?>
//RESULT in the flash textfield
------------------
|.$caption; |
|?> |
| |
------------------
wrong!!!
the right response shoul be this:
-------------------
|Testing Flash |
| and Php |
| |
-------------------
How can i get it?
