tbrehm
2013-08-13 6a623a542611768259e90ccdc53c5a95a96ea8bd
Fixed client_updat remoting example.
1 files modified
7 ■■■■ changed files
remoting_client/examples/client_update.php 7 ●●●● patch | view | raw | blame | history
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>";