# PHP variables

**URL:** https://forum.kirupa.com/t/php-variables/178553
**Category:** programming
**Created:** [February 11, 2006, 9:54pm UTC](https://forum.kirupa.com/t/php-variables/178553 "2006-02-11T21:54:28Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Catalist](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/catalist/32/2148_2.png) [@Catalist](https://forum.kirupa.com/u/Catalist)
#### Post date: [February 11, 2006, 9:54pm UTC](https://forum.kirupa.com/t/php-variables/178553/1 "2006-02-11T21:54:28Z")

</div>

I’m trying to get flash to retrive variables from a php file. The php file is nuumbers.php with this inside it.

```auto
<?php
$five = "5";
$one = "1";
?>

```

In the flash file I have a dynamic text box with the var name output.  
And this code on the first keyframe.

```auto
onEnterFrame = function (){
 _root.loadVariables("http://www.breefield.com/graph/numbers.php","GET");
 _root.output = five;
}

```

But, guess what. Nothing is shown in the output text box.

What am I doing wrong?
