Strange variable

I’ve tryied to send one variable (php) to flash

with this code:



var objRecebe:LoadVars = new LoadVars();

objRecebe.onLoad = function():Void {

   name_txt.text = objRecebe.name;
}

objRecebe.load("name.php");

php:


<?php
print "&name=how are you";
?>

but what’s printed is:

how are you";

here is attached the files i use…

thanks for any help