Thank you KL Admin, but still need your help.

I still have another problem of getting variables from PHP
do I need to write
loadVariables("
http://127.0.0.1:1001/Basic/uldl?klCommand=loadVariables&klUrl=http:../loadvariabletest.php","/main","GET");
or just using
loadVariables("
http://127.0.0.1:1001/Basic/uldl?klCommand=loadVariables&klUrl=http:../loadvariabletest.php?%26sendToPHP=hello&klUrlDecodeOff=1","/main","POST"); Both of them, I cannot trace any value from php. ----------------------------- trace(superice);
Sorry, I am not quite familier with AS1.
the server-side code is as below;
<?php
if ($_POST["sendToPHP"] == "hello"){
$message='The data values were '.
'received from Flash successfully!';
echo 'Sending to Flash ... ';
echo "&testme=.$message";
echo "&superice=superice";}
?>
I think, it should return value from php to flash, such as superice, or testme
but I can only see that klError is 0 when I call loadvariables(), I cannot trace any value, all of them are Null.
Why?
I also see there are many examples which introduced to use: loadvariables (http://...loadvariablestest, ""); but it doesn't work either.
Why? I just used as2,3 before, it is not supported by flashlite 1.1. It really tortures me!
Could you give me some hint of it?