From e0fc57bffe1220b149b3f4f9ed800c8dd356bd57 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 4 Sep 2008 19:29:17 +0000 Subject: removed random invisible character (ASCII 194) from HTML and PHP files --- user_guide/libraries/xmlrpc.html | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'user_guide/libraries/xmlrpc.html') diff --git a/user_guide/libraries/xmlrpc.html b/user_guide/libraries/xmlrpc.html index 7e57b5511..9c1b7145f 100644 --- a/user_guide/libraries/xmlrpc.html +++ b/user_guide/libraries/xmlrpc.html @@ -403,22 +403,22 @@ The Server receives the request and maps it to the "process" function, where a r

If you wish to use an associative array in your method parameters you will need to use a struct datatype:

$request = array(
-                  array(
-                        // Param 0
-                        array(
-                              'name'=>'John'
-                              ),
-                              'struct'
-                        ),
-                        array(
-                              // Param 1
-                              array(
-                                    'size'=>'large',
-                                    'shape'=>'round'
-                                    ),
-                              'struct'
-                        )
-                  );
+                  array(
+                        // Param 0
+                        array(
+                              'name'=>'John'
+                              ),
+                              'struct'
+                        ),
+                        array(
+                              // Param 1
+                              array(
+                                    'size'=>'large',
+                                    'shape'=>'round'
+                                    ),
+                              'struct'
+                        )
+                  );
$this->xmlrpc->request($request);

You can retrieve the associative array when processing the request in the Server.

-- cgit v1.2.3-24-g4f1b