как передать во флаш переменную $paid="yes"; из вот такого кода:

PHP код:
<?php
$RECALL = $HTTP_GET_VARS["RECALL"];
if( trim($RECALL) == "" )
{
header( "Location: erreur.html" );
exit(1);
}
$RECALL = urlencode( $RECALL );
$AUTH = urlencode( "000/000/000" );
$r = @file( "http://payment.allopass.com/api/checkcode.apu?code=$RECALL&auth=$AUTH" );
// test for the server's response
if( substr( $r[0],0,2 ) != "OK" )
{
// the server has returned ERR or NOK : access refused.
header( "Location: erreur.html" );
exit(1);
}
$paid="yes";
?>
Пробовал методом getVars.load, но там передаютца переменние только если код такого типа: vars=one, two, three, blah, blah