Php to Flash?

hi!

I’ve got this in my flash…

myLoadVars = new LoadVars();
myLoadVars.onLoad = function() {
    myTextBox.text = this.LinkToKirupa;
};
myLoadVars.load("submithigh.php");

and this in my submithigh.php file

<?php
$LinkToKirupa="500000";
?>

when i run my flash… it comes up with “undefined”… so it doesn’t seem to work…

I did it with a text file…
which just had

LinkToKirupa=500000

and it works!

So… I’m guessing since it’s php… it’s gotta be scripted a different way.

What can i do to make it work in php?

Thanks!