[Help] PHP keeps reading undefined

okie dokie. Ive been working a bit in PHP and flash and have hit a snag.

This is my PHP code.

<html>
<body>

<?PHP
$getName = "Skribble";
echo "getName=".$getName
?>

</body>
</html>

and this is my AS

lv = new LoadVars();
lv.sendAndLoad("test.php", lv, "GET");
lv.onLoad = function(success:Boolean) {
	if (success == true) {
		_root.recieved.text = this.getName;
	}
};

No matter what I do the textBox “recieved” keeps returning “undefined”

Can I please get some help here?

Thanks