!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/   drwxr-xr-x
Free 13.07 GB of 57.97 GB (22.55%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     tbl_structure.php (1.99 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Displays table structure infos like columns, indexes, size, rows
 * and allows manipulation of indexes and columns
 *
 * @package PhpMyAdmin
 */

use PhpMyAdmin\Controllers\Table\TableStructureController;
use 
PhpMyAdmin\Di\Container;
use 
PhpMyAdmin\Response;

require_once 
'libraries/common.inc.php';

$container Container::getDefaultContainer();
$container->factory('PhpMyAdmin\Controllers\Table\TableStructureController');
$container->alias(
    
'TableStructureController',
    
'PhpMyAdmin\Controllers\Table\TableStructureController'
);
$container->set('PhpMyAdmin\Response'Response::getInstance());
$container->alias('response''PhpMyAdmin\Response');

global 
$db$table$db_is_system_schema$tbl_is_view$tbl_storage_engine,
    
$table_info_num_rows$tbl_collation$showtable;
$GLOBALS['dbi']->selectDb($GLOBALS['db']);
$table_class_object $GLOBALS['dbi']->getTable(
    
$GLOBALS['db'],
    
$GLOBALS['table']
);
$reread_info $table_class_object->getStatusInfo(nulltrue);
$GLOBALS['showtable'] = $table_class_object->getStatusInfo(null, (isset($reread_info) && $reread_info true false));
if (
$table_class_object->isView()) {
    
$tbl_is_view true;
    
$tbl_storage_engine __('View');
} else {
    
$tbl_is_view false;
    
$tbl_storage_engine $table_class_object->getStorageEngine();
}
$tbl_collation $table_class_object->getCollation();
$table_info_num_rows $table_class_object->getNumRows();
/* Define dependencies for the concerned controller */
$dependency_definitions = array(
    
'db' => $db,
    
'table' => $table,
    
'db_is_system_schema' => $db_is_system_schema,
    
'tbl_is_view' => $tbl_is_view,
    
'tbl_storage_engine' => $tbl_storage_engine,
    
'table_info_num_rows' => $table_info_num_rows,
    
'tbl_collation' => $tbl_collation,
    
'showtable' => $GLOBALS['showtable']
);

/** @var TableStructureController $controller */
$controller $container->get('TableStructureController'$dependency_definitions);
$controller->indexAction();

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.023 ]--