PHP code example of lagdo / dbadmin-driver-pgsql

1. Go to this page and download the library: Download lagdo/dbadmin-driver-pgsql 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/ */

    

lagdo / dbadmin-driver-pgsql example snippets


    'app' => [
        'packages' => [
            Lagdo\DbAdmin\App\Package::class => [
                'servers' => [
                    'server_id' => [ // A unique identifier for this server
                        'driver' => 'pgsql',
                        'name' => '',     // The name to be displayed in the dashboard UI.
                        'host' => '',     // The database host name or address.
                        'port' => 0,      // The database port. Optional.
                        'username' => '', // The database user credentials.
                        'password' => '', // The database user credentials.
                    ],
                ],
            ],
        ],
    ],