flash用php连接数据库的代码

Eliza ·
更新时间:2024-11-14
· 887 次阅读

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与asp/php/asp.net通信的方法PHP+FLASH实现上传文件进度条相关文件 下载使用PHP提取视频网站页面中的FLASH地址的代码PHP生成Flash动画的实现代码flash+php+mysql打造简单留言本教程用PHP动态创建Flash动画php读取flash文件高宽帧数背景颜色的方法php中使用getimagesize获取图片、flash等文件的尺寸信息实例PHP实现仿百度文库,豆丁在线文档效果(word,excel,ppt转flash)php获取flash尺寸详细数据的方法



数据 flash PHP 数据库

需要 登录 后方可回复, 如果你还没有账号请 注册新账号