Simple PHP to AS prob

hello, i am sending data from flash to php to my database with no prob. But i cant get my the php to send variable, called “checklog” back to my flash file.

this is the code i used on my submit button in flash
[AS]
on(press){
_root.checklog=0;
loadVariablesNum (“http://www.site.com/processForm.php",0,"post”);
}
[/AS]
this is the code in my frame 1
[AS]
stop();
this.onEnterFrame = function () {
trace(checklog);
if(_root.checklog == 1){
_root.gotoAndStop(2);
}
}
[/AS]
this is the last two line of my php file.


<?
.....
$valueCheck=1;
print "&checklog=".$valueCheck;
?>

Now my trace(checklog) in my main Frame return 1 but its packed with spaces and i dont move to frame 2. Can someone help me or am i doomed to suck at this.
:ne:

-woj-