由于某些原因,PHP变量无法正确加载。这就是发生的情况:
在我的PHP代码中,我有:
<?php
include_once "connect.php";
$username = $_POST['username'];
$password = $_POST['password'];
if ($_POST['systemCall'] == "checkLogin") {
$sql = "SELECT * FROM users WHERE username='$username' AND password='$password'";
$query = mysql_query($sql);
$login_counter = mysql_num_rows($query);
if ($login_counter > 0) {
while ($data = mysql_fetch_array($query)) {
$testing = $data["testing"];
$userbio = $data["user_bio"];
print "thetesting=$testing";
print "theuserbio=$userbio";
}
} else {
print "theuserbio=The login details dont match our records.";
}
}
?>
然后在我的AS3代码中,我有:
import flash.text.*;
result_text.autoSize = TextFieldAutoSize.LEFT;
result_text.text = "" + event.target.data.theuserbio;
result_text2.text = "" + event.target.data.thetesting
发生的情况是,每当我使用正确的凭据登录时,
result_text.text
都会显示undefined
。但是
result_text2.text
会说:HELLOtheuserbio=this is the user bio
。基本上发生的是
result_text2
在说theuserbio
和thetesting
。当result_text
在说undefined
时。如何使
result_text
表示theuserbio
内的数据,而result_text2
表示thetesting
内的数据呢? 最佳答案
在打印之间添加与号
print "thetesting=$testing";
print "&";
print "theuserbio=$userbio";
并检查您是否有这一行:
urlloader.dataFormat = URLLoaderDataFormat.VARIABLES;