亲宝软件园·资讯

展开

flash 数据库 flash用php连接数据库的代码

人气:0
想了解flash用php连接数据库的代码的相关内容吗,在本文为您仔细讲解flash 数据库的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:flash,数据库,下面大家一起来学习吧。
php代码:
复制代码 代码如下:

/* /flashservices/services/Catalog.php */
class Catalog {
        var $products_array = array();

// Constructor: Contains the list of methods available to the gateway
function Catalog() {
        $this->methodTable = array (
                "getProducts" => array (
                        "description" => "Get list of products",
                        "access" => "remote",
                        "arguments" => "" // arguments could be optional, not tested
                )
        ); // end methodTable
}

function getProducts() {       
        // your code goes here

        return $this->products_array;
}
}

actionscript代码:
复制代码 代码如下:

#include "NetServices.as"
NetServices.setDefaultGatewayUrl("http://yourserver.com/flashservices/gateway.php");
gw = NetServices.createGatewayConnection();
CatalogREMOTE = gw.getService("Catalog", this);
CatalogREMOTE.getProducts();

getProducts_Result = function(result) {
        _root.products_results = result;

加载全部内容

相关教程
猜你喜欢
用户评论