PHP PHP:将Flash连接到数据库(远程处理)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP:将Flash连接到数据库(远程处理)相关的知识,希望对你有一定的参考价值。

/* /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;
}
}


#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:将Flash连接到数据库(远程处理)的主要内容,如果未能解决你的问题,请参考以下文章

将 javascript 连接到 php 套接字以与 Flash 通信

PHP:远程连接到 MS Access 2013

使用 PHP 连接到远程 MySQL 数据库的网页

PHP 远程连接到 MS Access 2016 数据库

如何通过 PHP 连接到远程服务器 [重复]

如何通过 ssh 将 php 应用程序与远程 mysql 数据库连接起来