第一次发帖,希望这对其他人也有帮助。我在这个主题上发现了一些帖子,但看起来我有一个特定的问题。
这是我在PHP中的输出
问题='海燕'是鸟的另一个名称?/你会在哪种运动中看到'西卷'?/谁更有名的'赫伯特·库里'?/'饮食'是议会哪个国家?/可可香奈儿真正的名字是什么?/'阿兹特克人'是哪个国家的当地人?/'EA发明了什么? North'在1869年?/ King Zog是哪个国家的统治者?& answers = Seagull / Penguin / Tern / Cormorant& correct = 0/0/1/0&
这是我的AS3代码
var request:URLRequest = new
URLRequest("http://localhost:8888/Quiz/questions.php");
request.method = URLRequestMethod.GET;
var loader2:URLLoader = new URLLoader();
loader2.addEventListener(Event.COMPLETE, completeHandler);
loader2.dataFormat = URLLoaderDataFormat.TEXT;
loader2.load(request);
function completeHandler(event:Event) :void{
var questions1 = event.target.data.questions1;
// dynamic text box called username
questionbox.question.text=event.target.data.questionbox.question.text;
}
var questions:String;
var questionsArray:Array=questions.split("/");
我正在尝试将问题显示在动态文本框中,但是收到错误代码#2007参数文本必须为非null。
我正在尝试将我的字符串转换为数组。
有人能在这看到问题吗?
任何帮助将不胜感激!提前致谢
编辑:
这是我的PHP代码
<?php
//functions
function get_id($column, $table)
{
$sql = mysql_query("select $column FROM $table") ;
while ($row =mysql_fetch_array($sql))
{
return $row["ID"];
}
}
function getquestions($id)
{
$sql =mysql_query("select text FROM questions WHERE quiz_ID =$id ");
$questions = array();
while($row = mysql_fetch_row($sql))
{
$questions[] = $row[0];
}
return $questions;
}
function getanswers($id)
{
$sql = mysql_query("select answer FROM answers WHERE question_ID= $id ");
$answers = array();
while($row =mysql_fetch_row($sql))
{
$answers[] = $row[0];
}
return $answers;
}
function getcorrect($id)
{
$sql = mysql_query("SELECT correct FROM answers WHERE question_ID= $id ");
$correct =array();
while($row =mysql_fetch_assoc($sql))
{
$correct[] =$row["correct"];
}
return $correct;
}
//Connect to Database
$con = mysql_connect("localhost","dinita","3nd3m0luk");
if(!$con)
{
die('Could not connect: '.mysql_error());
}
else
{
// SELECT DATABASE
mysql_select_db("quizCreation", $con);
// Create an array of data from database
$quizid = get_id("ID","quizName");
$questionid = get_id("ID", "questions");
$ques = implode("/",getquestions($quizid));
$ans =implode("/",getanswers($questionid));
$cor =implode("/", getcorrect($questionid));
echo htmlentities( "questions"."=". $ques."&");
echo htmlentities("answers"."=".$ans."&");
echo htmlentities("correct"."=".$cor."&");
}
mysql_close($con);
?>
答案 0 :(得分:0)
如果那是你的php代码的输出,那么如果你必须在textield中可视化它,你应该改变它:
var questions:String = event.target.data.questions;
questionbox.question.text=questions;
如果你想将String转换为数组,那么这样做:
var questionsArray:Array=questions.split("/");