No feedback variables from PHP

I maked Flash with PHP and MYSQL… but not work.
So I create simple movie, just with Flash and PHP.

Flash:
Step 1. I create the text input boxes with var name
Step 2. I create the text dinamic box with var result
Step 3. I create button with name test
Step 4. I create action script in root…
test.onPress = function () {
loadVariablesNum(“test.php”, 0, “POST”);
}

PHP:
<?php
$name = $_POST[‘name’];
print "result=Your name is " . $name . “.”;
?>

when i trying with typing at input box and then push the button… No result from PHP to dinamic box and nothing happend.
And I trying to with changed the command PRINT with ECHO in PHP file.
Somebody can help me?..
Thanks.