flash用php连接数据库的代码_php教程-查字典教程网
flash用php连接数据库的代码
flash用php连接数据库的代码
发布时间:2016-12-29 来源:查字典编辑
摘要:php代码:复制代码代码如下:/*/flashservices/services/Catalog.php*/classCatalog{var...

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;

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新php教程学习
    热门php教程学习
    编程开发子分类