PHP code example of jojo / gbxremote

1. Go to this page and download the library: Download jojo/gbxremote library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jojo / gbxremote example snippets


$client = new GBXRemote();
$client->connect("127.0.0.1", 5000);
$client->Authenticate("SuperAdmin", "SuperAdminPassword");
$version = $client->GetVersion();
$maps = $client->GetMapList(100, 0);
$client->close();