Posted in PHP onApril 21, 2011
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; }
flash用php连接数据库的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@