-3

嗨,所以我需要使用来自 php 的信息在 flash 中填充一个数组。我的PHP代码是:

<?php

$db = mysql_connect("localhost","root",""); 
    if (!$db) {
        die("Database connection failed miserably: " . mysql_error());
    }


$db_select = mysql_select_db("profileofperson",$db);
    if (!$db_select) {
        die("Database selection also failed miserably: " . mysql_error());
    }

?>

<html>
    <head>
        <title>mySQLtestfile</title>
    </head>
    <body>
 
<?php
//Step4
$result = mysql_query("SELECT * FROM catalogue", $db);
    if (!$result) {
        die("Database query failed: " . mysql_error());
    }

    while ($row = mysql_fetch_array($result)) {
        echo $row[" Name"]." ".$row["age"]." ".$row["Allergies"]." ".$row["height"]." ".$row["weight"]."<br />";
    }
?>
    </body>
</html>

目前正在显示来自数据库的信息。如何让闪存填充到数组中?

4

1 回答 1

0

使您的文档 xml,而不是 html,像这样开始文档:

<?php

    header("Content-type: text/xml");
    echo chr(60).chr(63).'xml version="1.0" encoding="utf-8" '.chr(63).chr(62);

这只是添加了一个标题标签,因此浏览器/flash 将文档识别为 XML(类似于带有 HTML 的 !DOCTYPE):<?xml version="1.0" encoding="UTF-8"?>

然后,按照您的方式查询,但以有效的 XML 格式回显结果:

    echo "<people>";//Create the parent node

    while ($row = mysql_fetch_array($result)) {
            echo "<person>";//Open child node, add values:
            echo "<name>".$row[" Name"]."</name>";
            echo "<age>".$row["age"]."</age>";
            echo "<allergies>".$row["Allergies"]."</allergies>";
            echo "<height>".$row["height"]."</height>";
            echo "<weight>".$row["weight"]."</weight>";
            echo "</person>";//Close child node
    };

    echo "</people>";//Close the parent node

?>

我刚刚把它写出来,所以可能并不完美,但它应该很容易让您检查它是否正在生成有效的 XML 文档(只需在浏览器中加载页面,获取 XML 查看器插件找出更多是否出错)并调整如果没有,有数百万关于从 PHP 生成 XML 页面的教程。

然后,在您的 Flash 应用程序中使用 URLLoader 类来访问它:

var loader:URLLoader = new URLLoader();
//The loader class

var urlRQ:URLRequest = new URLRequest('yoursite/yourpage');
//The URL request    

loader.dataFormat = URLLoaderDataFormat.TEXT;
//Use this for xml

urlRQ.method = URLRequestMethod.POST;
//Set method type (normally post)

loader.load(urlRQ);
loader.addEventListener(Event.COMPLETE,loadedData);

然后,已加载数据解析 XML:

function loadedData(e:Event):void {

    var people:XML = XML(e.target.data);//Cast this var as XML to access
    //people should represent top-level ie <people>;  

    for each(var person:XML in people.person){//Iterate over member nodes called 'person';
         trace(person.age);//XML object node names can be referenced 
                           //directly with dot notation!
         trace(person.name);//etc...
    }

}

最后一件事,mysql_ 函数在 PHP 中已被弃用,我最近发现了这一点,以后改用 SQLi 或 PDO!

希望这会有所帮助,正如我所说,我已经把它写在了我的脑海中,你最好尝试一下,但如果你确实卡住了,请发表评论,我会看看!

于 2013-03-07T00:33:14.493 回答