1

第一次发帖,希望对其他人也有帮助。我发现了一些关于这个主题的帖子,但似乎我遇到了一个非常具体的问题。

这是我在 PHP 中的输出

问题=“海燕”是哪只鸟的替代名称?/在哪项运动中你会看到“西部卷”?/谁更广为人知的是“赫伯特·考里”?/“饮食”是哪个国家的议会? /可可香奈儿的真名是什么?/“阿兹特克人”是哪个国家的土著?/“OA North”在 1869 年发明了什么?/King Zog 是哪个国家的统治者?&answers=海鸥/企鹅/燕鸥/鸬鹚&正确=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 参数文本必须为非空。

我有效地试图将我的字符串变成一个数组。

任何人都可以在这里看到问题吗?

任何帮助将不胜感激!提前致谢

编辑:

这是我的 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); 

?>
4

1 回答 1

0

如果这是您的 php 代码的输出,那么如果您必须在 textield 中将其可视化,您应该像这样更改它:

        var questions:String = event.target.data.questions;
        questionbox.question.text=questions;

如果要将字符串转换为数组,请执行以下操作:

       var questionsArray:Array=questions.split("/");
于 2012-10-11T16:05:20.793 回答