ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:27.56 GB of 70.42 GB (39.14%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ home/ yalagina/ map/ site/ sql_control/ - drwxr-sr-x

Directory:
Viewing file:     browse_foreigners.php (10.97 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * display selection for relational field values
 *
 * @package phpMyAdmin
 */

/**
 * Gets a core script and starts output buffering work
 */
require_once './libraries/common.inc.php';

PMA_checkParameters(array('db''table''field'));

require_once 
'./libraries/ob.lib.php';
PMA_outBufferPre();

require_once 
'./libraries/header_http.inc.php';

/**
 * Displays the frame
 */
require_once './libraries/transformations.lib.php'// Transformations
$cfgRelation PMA_getRelationsParam();
$foreigners  = ($cfgRelation['relwork'] ? PMA_getForeigners($db$table) : FALSE);

$override_total TRUE;

if (!isset(
$pos)) {
    
$pos 0;
}

$foreign_limit 'LIMIT ' $pos ', ' $GLOBALS['cfg']['MaxRows'] . ' ';
if (isset(
$foreign_navig) && $foreign_navig == __('Show all')) {
    unset(
$foreign_limit);
}

$foreignData PMA_getForeignData($foreigners$field$override_total, isset($foreign_filter) ? $foreign_filter ''$foreign_limit);

if (isset(
$rownumber)) {
    
$rownumber_param '&amp;rownumber=' urlencode($rownumber);
} else {
    
$rownumber_param '';
}

$gotopage '';
$showall '';

if (
is_array($foreignData['disp_row'])) {

    if (
$cfg['ShowAll'] && ($foreignData['the_total'] > $GLOBALS['cfg']['MaxRows'])) {
        
$showall '<input type="submit" name="foreign_navig" value="' __('Show all') . '" />';
    }

    
$session_max_rows $GLOBALS['cfg']['MaxRows'];
    
$pageNow = @floor($pos $session_max_rows) + 1;
    
$nbTotalPage = @ceil($foreignData['the_total'] / $session_max_rows);

    if (
$foreignData['the_total'] > $GLOBALS['cfg']['MaxRows']) {
        
$gotopage PMA_pageselector(
                      
$session_max_rows,
                      
$pageNow,
                      
$nbTotalPage,
                      
200,
                      
5,
                      
5,
                      
20,
                      
10,
                      
__('Page number:')
                    );
    }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xml:lang="<?php echo $available_languages[$lang][1]; ?>"
    lang="<?php echo $available_languages[$lang][1]; ?>"
    dir="<?php echo $text_dir?>">

<head>
    <title>phpMyAdmin</title>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset?>" />
    <link rel="stylesheet" type="text/css"
        href="phpmyadmin.css.php?<?php echo PMA_generate_common_url(''''); ?>&amp;js_frame=right&amp;nocache=<?php echo $GLOBALS['PMA_Config']->getThemeUniqueValue(); ?>" />
<?php
// includes everything asked for by libraries/common.inc.php
require_once './libraries/header_scripts.inc.php';
?>
    <script type="text/javascript">
    //<![CDATA[
    self.focus();
    function formupdate(fieldmd5, key) {
        var $inline = window.opener.jQuery('.browse_foreign_clicked');
        if ($inline.length != 0) {
            $inline.removeClass('browse_foreign_clicked')
                // puts new value in the previous element which is
                // a span with class curr_value
                .prev().text(key);
            self.close();
            return false;
        }

        if (opener && opener.document && opener.document.insertForm) {
            var field = 'fields';
            var field_null = 'fields_null';

            <?php if (isset($rownumber)) { ?>
            var element_name = field + '[multi_edit][<?php echo htmlspecialchars($rownumber); ?>][' + fieldmd5 + ']';
            var null_name = field_null + '[multi_edit][<?php echo htmlspecialchars($rownumber); ?>][' + fieldmd5 + ']';
            <?php } else { ?>
            var element_name = field + '[]';
            <?php ?>

            <?php if (isset($fieldkey) && is_numeric($fieldkey)) { ?>
            var element_name_alt = field + '[<?php echo $fieldkey?>]';
            <?php } else { ?>
            var element_name_alt = field + '[0]';
            <?php ?>

            if (opener.document.insertForm.elements[element_name]) {
                // Edit/Insert form
                opener.document.insertForm.elements[element_name].value = key;
                if (opener.document.insertForm.elements[null_name]) {
                    opener.document.insertForm.elements[null_name].checked = false;
                }
                self.close();
                return false;
            } else if (opener.document.insertForm.elements[element_name_alt]) {
                // Search form
                opener.document.insertForm.elements[element_name_alt].value = key;
                self.close();
                return false;
            }
        }

        alert('<?php echo PMA_jsFormat(__('The target browser window could not be updated. Maybe you have closed the parent window, or your browser\'s security settings are configured to block cross-window updates.')); ?>');
    }
    //]]>
    </script>
</head>

<body id="body_browse_foreigners">

<form action="browse_foreigners.php" method="post">
<fieldset>
<?php echo PMA_generate_common_hidden_inputs($db$table); ?>
<input type="hidden" name="field" value="<?php echo htmlspecialchars($field); ?>" />
<input type="hidden" name="fieldkey"
    value="<?php echo isset($fieldkey) ? htmlspecialchars($fieldkey) : ''?>" />
<?php if (isset($rownumber)) { ?>
<input type="hidden" name="rownumber" value="<?php echo htmlspecialchars($rownumber); ?>" />
<?php ?>
<span class="formelement">
    <label for="input_foreign_filter"><?php echo __('Search') . ':'?></label>
    <input type="text" name="foreign_filter" id="input_foreign_filter"
        value="<?php echo isset($foreign_filter) ? htmlspecialchars($foreign_filter) : ''?>" />
    <input type="submit" name="submit_foreign_filter" value="<?php echo __('Go');?>" />
</span>
<span class="formelement">
    <?php echo $gotopage?>
</span>
<span class="formelement">
    <?php echo $showall?>
</span>
</fieldset>
</form>

<table width="100%">
<?php
if (is_array($foreignData['disp_row'])) {
    
$header '<tr>
        <th>' 
__('Keyname') . '</th>
        <th>' 
__('Description') . '</th>
        <td width="20%"></td>
        <th>' 
__('Description') . '</th>
        <th>' 
__('Keyname') . '</th>
    </tr>'
;

    echo 
'<thead>' $header '</thead>' "\n"
        
.'<tfoot>' $header '</tfoot>' "\n"
        
.'<tbody>' "\n";

    
$values = array();
    
$keys   = array();
    foreach (
$foreignData['disp_row'] as $relrow) {
        if (
$foreignData['foreign_display'] != FALSE) {
            
$values[] = $relrow[$foreignData['foreign_display']];
        } else {
            
$values[] = '';
        }

        
$keys[] = $relrow[$foreignData['foreign_field']];
    }

    
asort($keys);

    
$hcount 0;
    
$odd_row true;
    
$val_ordered_current_row 0;
    
$val_ordered_current_equals_data false;
    
$key_ordered_current_equals_data false;
    foreach (
$keys as $key_ordered_current_row => $value) {
    
//for ($i = 0; $i < $count; $i++) {
        
$hcount++;

        if (
$cfg['RepeatCells'] > && $hcount $cfg['RepeatCells']) {
            echo 
$header;
            
$hcount 0;
            
$odd_row true;
        }

        
$key_ordered_current_key $keys[$key_ordered_current_row];
        
$key_ordered_current_val $values[$key_ordered_current_row];

        
$val_ordered_current_key $keys[$val_ordered_current_row];
        
$val_ordered_current_val $values[$val_ordered_current_row];

        
$val_ordered_current_row++;

        if (
PMA_strlen($val_ordered_current_val) <= $cfg['LimitChars']) {
            
$val_ordered_current_val htmlspecialchars($val_ordered_current_val);
            
$val_ordered_current_val_title '';
        } else {
            
$val_ordered_current_val_title =
                
htmlspecialchars($val_ordered_current_val);
            
$val_ordered_current_val =
                
htmlspecialchars(PMA_substr($val_ordered_current_val0,
                    
$cfg['LimitChars']) . '...');
        }
        if (
PMA_strlen($key_ordered_current_val) <= $cfg['LimitChars']) {
            
$key_ordered_current_val htmlspecialchars($key_ordered_current_val);
            
$key_ordered_current_val_title '';
        } else {
            
$key_ordered_current_val_title =
                
htmlspecialchars($key_ordered_current_val);
            
$key_ordered_current_val =
                
htmlspecialchars(PMA_substr($key_ordered_current_val0,
                    
$cfg['LimitChars']) . '...');
        }

        if (! empty(
$data)) {
            
$val_ordered_current_equals_data $val_ordered_current_key == $data;
            
$key_ordered_current_equals_data $key_ordered_current_key == $data;
        }

        
?>
    <tr class="noclick <?php echo $odd_row 'odd' 'even'$odd_row = ! $odd_row?>">
        <td nowrap="nowrap">
        <?php
        
echo ($key_ordered_current_equals_data '<strong>' '')
            .
'<a href="#" title="' __('Use this value')
            . (
$key_ordered_current_val_title != '' ': ' $key_ordered_current_val_title '') . '"'
            
.' onclick="formupdate(\'' md5($field) . '\', \''
            
PMA_jsFormat($key_ordered_current_keyfalse) . '\'); return false;">'
            
.htmlspecialchars($key_ordered_current_key) . '</a>' . ($key_ordered_current_equals_data '</strong>' '');
        
?></td>
        <td>
        <?php
        
echo ($key_ordered_current_equals_data '<strong>' '')
            . 
'<a href="#" title="' __('Use this value') . ($key_ordered_current_val_title != '' ': '
            
$key_ordered_current_val_title '') . '" onclick="formupdate(\''
            
md5($field) . '\', \'' PMA_jsFormat($key_ordered_current_keyfalse) . '\'); return false;">'
            
$key_ordered_current_val '</a>' . ($key_ordered_current_equals_data '</strong>' '');
        
?></td>
        <td width="20%">
            <img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'?>"
                alt="" width="1" height="1" /></td>

        <td>
        <?php
        
echo ($val_ordered_current_equals_data '<strong>' '')
            . 
'<a href="#" title="' __('Use this value') .  ($val_ordered_current_val_title != '' ': '
            
$val_ordered_current_val_title '') . '" onclick="formupdate(\'' md5($field)
            . 
'\', \'' PMA_jsFormat($val_ordered_current_keyfalse) . '\'); return false;">'
            
$val_ordered_current_val '</a>' . ($val_ordered_current_equals_data '</strong>' '');
        
?></td>
        <td nowrap="nowrap">
        <?php
        
echo ($val_ordered_current_equals_data '<strong>' '') . '<a href="#" title="'
        
__('Use this value') .  ($val_ordered_current_val_title != '' ': ' $val_ordered_current_val_title '')
        . 
'" onclick="formupdate(\'' md5($field) . '\', \''
        
PMA_jsFormat($val_ordered_current_keyfalse) . '\'); return false;">' htmlspecialchars($val_ordered_current_key)
        . 
'</a>' . ($val_ordered_current_equals_data '</strong>' '');
        
?></td>
    </tr>
        <?php
    
// end while
}
?>
</tbody>
</table>

</body>
</html>
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.2228 seconds