tbrehm
2013-08-21 7b47c0aa0aeee6f059f00008e36cc210ca89ecb9
remoting_client/examples/client_update.php
@@ -16,17 +16,20 @@
   //* Parameters
   $reseller_id = 1;
   $c_id = 1;
   $client_id = 1;
   //* Get the client record
   $client_record = $client->client_get($session_id, $reseller_id);
   $client_record = $client->client_get($session_id, $client_id);
   //* Change parameters
   $client_record['country'] = 'de';
   $client_record['username'] = 'mguy';
   $client_record['contact_name'] = 'brush';
   
   //* We set the client password to a empty string as we do not want to change it.
   $client_record['password'] = '';
   $affected_rows = $client->client_update($session_id, $c_id, $reseller_id, $client_record);
   echo "Number of records that have been changed in the database: ".$affected_rows."<br>";