PHP:将Flash连接到数据库(远程处理)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP:将Flash连接到数据库(远程处理)相关的知识,希望对你有一定的参考价值。
/* /flashservices/services/Catalog.php */ class Catalog { // Constructor: Contains the list of methods available to the gateway function Catalog() { "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; } } #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:将Flash连接到数据库(远程处理)的主要内容,如果未能解决你的问题,请参考以下文章
将 javascript 连接到 php 套接字以与 Flash 通信
如何将任何类型的数据库(例如MySQL)连接到在Adobe Flash CS5.5中开发的应用程序