xampを使用してFlash、php、mysqlを統合する初心者です。私はこのバグを修正するためにたくさん試しましたが、バグがphpページにあるのか、値がphpに渡されていないのかわからないため、修正できません。
これは私のAS3コードです:
public function processLogin ():void {
trace("inside the processlogin method");
var phpVars:URLVariables = new URLVariables();
var phpFileRequest:URLRequest = new URLRequest("controlpanel.php");
phpFileRequest.method = URLRequestMethod.POST;
var phpLoader:URLLoader = new URLLoader();
phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
phpLoader.addEventListener(Event.COMPLETE, showResult);
phpVars.Username = Username.text;
trace(phpVars.Username);
phpVars.password = password.text;
trace(phpVars.password);
phpFileRequest.data = phpVars;
trace("phpvariable"+phpVars);
phpLoader.dataFormat=URLLoaderDataFormat.TEXT;
phpLoader.load(phpFileRequest);
}
public function showResult (event:Event):void {
trace("show result");
result_text.autoSize = TextFieldAutoSize.LEFT;
result_text.text = "" + event.target.data.systemResult;
trace(event.target.data.systemResult);
}
}
これはコンソールの出力でした:
sucess
now im in checklogin
inside the processlogin method
raj
raj
phpvariableUsername=raj&password=raj
starts process login method
show result
ReferenceError: Error #1069: Property systemResult not found on String and there is no default value.
at actions::main/showResult()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()
対応するPhpページは
<html>
<body><?php
include("connect.php");
$username = $_POST['Username'];
$password = $_POST['password'];
$query = mysql_query("SELECT * FROM users WHERE username='$Username' AND password='$password'");
$login_counter = mysql_num_rows($query);
while ($data = mysql_fetch_array($query))
{
$userbio = $data['user_bio'];
print "systemResult=$userbio";
}
?>
</body>
</html>