Get simple variables from php

Hey!

I am going to create few dynamic texts in a flash movie. The dynamic texts shall be based on few simple variables from a php-script.

This is an example of my php:
[FONT=Courier New]$varone = “hello”;[/FONT]
[FONT=Courier New]$vartwo = “One long message…”;[/FONT]
[FONT=Courier New][/FONT]
[FONT=Courier New]echo “&one=”;[/FONT]
[FONT=Courier New]echo “$varone”;[/FONT]
[FONT=Courier New]echo “&two=”;[/FONT]
[FONT=Courier New]echo “$vartwo”;[/FONT]

The result would be:
" &one=hello&two=One long message…& "

What is the Action Script to load this two variables to two dynamic texts?