HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cpanel/ea-php55/root/usr/share/doc/pear/Translation2/docs/examples/settings_multitable.php
<?php
define('TABLE_PREFIX', '');

$dbinfo = array(
    'hostspec' => 'host',
    'database' => 'dbname',
    'phptype'  => 'mysql',
    'username' => 'user',
    'password' => 'pwd'
);

$params = array(
    'langs_avail_table' => TABLE_PREFIX.'langs_avail',
    'lang_id_col'       => 'id',
    'lang_name_col'     => 'name',
    'lang_meta_col'     => 'meta',
    'lang_errmsg_col'   => 'error_text',
    'lang_encoding_col' => 'encoding',
    'strings_tables'    => array(
        'en' => TABLE_PREFIX.'i18n_en',
        'it' => TABLE_PREFIX.'i18n_it',
        'de' => TABLE_PREFIX.'i18n_de'
    ),
    'string_id_col'      => 'string_id',
    'string_page_id_col' => 'page_id',
    'string_text_col'    => 'string'
    //'prefetch' => false  //more queries, smaller result sets
                           //(use when db load is cheaper than network load)
);

$driver = 'MDB2';