# \[Help\] PHP keeps reading undefined

**URL:** https://forum.kirupa.com/t/help-php-keeps-reading-undefined/160607
**Category:** flash
**Created:** [August 27, 2005, 3:22pm UTC](https://forum.kirupa.com/t/help-php-keeps-reading-undefined/160607 "2005-08-27T15:22:29Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Skribble](https://avatars.discourse-cdn.com/v4/letter/s/b487fb/32.png) [@Skribble](https://forum.kirupa.com/u/Skribble)
#### Post date: [August 27, 2005, 3:22pm UTC](https://forum.kirupa.com/t/help-php-keeps-reading-undefined/160607/1 "2005-08-27T15:22:29Z")

</div>

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

This is my PHP code.

```auto
<html>
<body>

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

</body>
</html>

```

and this is my AS

```auto
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
