PMA\libraries\DisplayResults::_getRowInfoForSpecialLinks PHP Method

    private function _getRowInfoForSpecialLinks($row, $col_order)
    {
        $row_info = array();
        $fields_meta = $this->__get('fields_meta');
        for ($n = 0; $n < $this->__get('fields_cnt'); ++$n) {
            $m = $col_order ? $col_order[$n] : $n;
            $row_info[mb_strtolower($fields_meta[$m]->name)] = $row[$m];
        }
        return $row_info;
    }
DisplayResults