亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? db_details_structure.php

?? WEBGAME源碼,有架設說明,只是非常簡單
?? PHP
?? 第 1 頁 / 共 2 頁
字號:
<?php/* $Id: db_details_structure.php 9769 2006-12-04 18:21:53Z lem9 $ */// vim: expandtab sw=4 ts=4 sts=4:require_once './libraries/common.lib.php';require_once './libraries/Table.class.php';/** * Prepares the tables list if the user where not redirected to this script * because there is no table in the database ($is_info is true) */if (empty($is_info)) {    // Drops/deletes/etc. multiple tables if required    if ((!empty($submit_mult) && isset($selected_tbl))      || isset($mult_btn)) {        $action = 'db_details_structure.php';        $err_url = 'db_details_structure.php?'. PMA_generate_common_url($db);        require './libraries/mult_submits.inc.php';        $message = $strSuccess;    }    require './libraries/db_details_common.inc.php';    $url_query .= '&amp;goto=db_details_structure.php';    // Gets the database structure    $sub_part = '_structure';    require './libraries/db_details_db_info.inc.php';}// 1. No tablesif ($num_tables == 0) {    echo '<p>' . $strNoTablesFound . '</p>' . "\n";    if (empty($db_is_information_schema)) {        require './libraries/display_create_table.lib.php';    } // end if (Create Table dialog)    /**     * Displays the footer     */    require_once './libraries/footer.inc.php';    exit;}// else// 2. Shows table informations - staybyte - 11 June 2001require_once './libraries/bookmark.lib.php';if (PMA_MYSQL_INT_VERSION >= 40101) {    require_once './libraries/mysql_charsets.lib.php';    $db_collation = PMA_getDbCollation($db);}// Display function/** * void PMA_TableHeader([bool $db_is_information_schema = false]) * display table header (<table><thead>...</thead><tbody>) * * @uses    PMA_showHint() * @uses    PMA_MYSQL_INT_VERSION * @uses    $GLOBALS['cfg']['PropertiesNumColumns'] * @uses    $GLOBALS['is_show_stats'] * @uses    $GLOBALS['strTable'] * @uses    $GLOBALS['strAction'] * @uses    $GLOBALS['strRecords'] * @uses    $GLOBALS['strApproximateCount'] * @uses    $GLOBALS['strType'] * @uses    $GLOBALS['strCollation'] * @uses    $GLOBALS['strSize'] * @uses    $GLOBALS['strOverhead'] * @uses    $GLOBALS['structure_tbl_col_cnt'] * @param   boolean $db_is_information_schema */function PMA_TableHeader($db_is_information_schema = false){    $cnt = 0; // Let's count the columns...    if ($db_is_information_schema) {        $action_colspan = 3;    } else {        $action_colspan = 6;    }    echo '<table class="data" style="float: left;">' . "\n"        .'<thead>' . "\n"        .'<tr><td></td>' . "\n"        .'    <th>' . $GLOBALS['strTable'] . '</th>' . "\n"        .'    <th colspan="' . $action_colspan . '">' . "\n"        .'        ' . $GLOBALS['strAction'] . "\n"        .'    </th>'        .'    <th>' . $GLOBALS['strRecords']        .PMA_showHint($GLOBALS['strApproximateCount']) . "\n"        .'    </th>' . "\n";    if (!($GLOBALS['cfg']['PropertiesNumColumns'] > 1)) {        echo '    <th>' . $GLOBALS['strType'] . '</th>' . "\n";        $cnt++;        if (PMA_MYSQL_INT_VERSION >= 40100) {            echo '    <th>' . $GLOBALS['strCollation'] . '</th>' . "\n";            $cnt++;        }    }    if ($GLOBALS['is_show_stats']) {        echo '    <th>' . $GLOBALS['strSize'] . '</th>' . "\n"           . '    <th>' . $GLOBALS['strOverhead'] . '</th>' . "\n";        $cnt += 2;    }    echo '</tr>' . "\n";    echo '</thead>' . "\n";    echo '<tbody>' . "\n";    $GLOBALS['structure_tbl_col_cnt'] = $cnt + $action_colspan + 3;} // end function PMA_TableHeader()$titles = array();if (true == $cfg['PropertiesIconic']) {    $titles['Browse']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';    $titles['NoBrowse']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_browse.png" alt="' . $strBrowse . '" title="' . $strBrowse . '" />';    $titles['Search']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';    $titles['NoSearch']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_select.png" alt="' . $strSearch . '" title="' . $strSearch . '" />';    $titles['Insert']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';    $titles['NoInsert']   = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_insrow.png" alt="' . $strInsert . '" title="' . $strInsert . '" />';    $titles['Structure']  = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_props.png" alt="' . $strStructure . '" title="' . $strStructure . '" />';    $titles['Drop']       = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';    $titles['NoDrop']     = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_drop.png" alt="' . $strDrop . '" title="' . $strDrop . '" />';    $titles['Empty']      = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'b_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';    $titles['NoEmpty']    = '<img class="icon" width="16" height="16" src="' .$pmaThemeImage . 'bd_empty.png" alt="' . $strEmpty . '" title="' . $strEmpty . '" />';    if ('both' === $cfg['PropertiesIconic']) {        $titles['Browse']     .= $strBrowse;        $titles['Search']     .= $strSearch;        $titles['NoBrowse']   .= $strBrowse;        $titles['NoSearch']   .= $strSearch;        $titles['Insert']     .= $strInsert;        $titles['NoInsert']   .= $strInsert;        $titles['Structure']  .= $strStructure;        $titles['Drop']       .= $strDrop;        $titles['NoDrop']     .= $strDrop;        $titles['Empty']      .= $strEmpty;        $titles['NoEmpty']    .= $strEmpty;    }} else {    $titles['Browse']     = $strBrowse;    $titles['Search']     = $strSearch;    $titles['NoBrowse']   = $strBrowse;    $titles['NoSearch']   = $strSearch;    $titles['Insert']     = $strInsert;    $titles['NoInsert']   = $strInsert;    $titles['Structure']  = $strStructure;    $titles['Drop']       = $strDrop;    $titles['NoDrop']     = $strDrop;    $titles['Empty']      = $strEmpty;    $titles['NoEmpty']    = $strEmpty;}/** * Displays the tables list */?><form method="post" action="db_details_structure.php" name="tablesForm" id="tablesForm"><?phpecho PMA_generate_common_hidden_inputs($db);PMA_TableHeader($db_is_information_schema);$i = $sum_entries = 0;$sum_size       = (double) 0;$overhead_size  = (double) 0;$overhead_check = '';$checked        = !empty($checkall) ? ' checked="checked"' : '';$num_columns    = $cfg['PropertiesNumColumns'] > 1 ? ceil($num_tables / $cfg['PropertiesNumColumns']) + 1 : 0;$row_count      = 0;$hidden_fields = array();$odd_row       = true;$at_least_one_view_exceeds_max_count = false;foreach ($tables as $keyname => $each_table) {    if ($each_table['TABLE_ROWS'] === null || $each_table['TABLE_ROWS'] < $GLOBALS['cfg']['MaxExactCount']) {        $each_table['TABLE_ROWS'] = PMA_Table::countRecords($db,            $each_table['TABLE_NAME'], $return = true, $force_exact = true);    }    $table_encoded = urlencode($each_table['TABLE_NAME']);    // MySQL < 5.0.13 returns "view", >= 5.0.13 returns "VIEW"    $table_is_view = ($each_table['TABLE_TYPE'] === 'VIEW'                       || $each_table['TABLE_TYPE'] === 'SYSTEM VIEW');    $alias = (!empty($tooltip_aliasname) && isset($tooltip_aliasname[$each_table['TABLE_NAME']]))               ? htmlspecialchars($tooltip_aliasname[$each_table['TABLE_NAME']])               :  htmlspecialchars($each_table['TABLE_NAME']);    $truename = (!empty($tooltip_truename) && isset($tooltip_truename[$each_table['TABLE_NAME']]))               ? htmlspecialchars($tooltip_truename[$each_table['TABLE_NAME']])               : htmlspecialchars($each_table['TABLE_NAME']);    // Sets parameters for links    $tbl_url_query = $url_query . '&amp;table=' . $table_encoded;    $i++;    $row_count++;    if ($table_is_view) {        $hidden_fields[] = '<input type="hidden" name="views[]" value="' .  $table_encoded . '" />';    }    if ($each_table['TABLE_ROWS'] > 0) {        $browse_table = '<a href="sql.php?' . $tbl_url_query . '&amp;pos=0">' . $titles['Browse'] . '</a>';        $search_table = '<a href="tbl_select.php?' . $tbl_url_query . '">' . $titles['Search'] . '</a>';    } else {        $browse_table = $titles['NoBrowse'];        $search_table = $titles['NoSearch'];    }    if (! $db_is_information_schema) {        if (! empty($each_table['TABLE_ROWS'])) {            $empty_table = '<a href="sql.php?' . $tbl_url_query                 . '&amp;sql_query=';            if (PMA_MYSQL_INT_VERSION >= 40000) {                $empty_table .= urlencode('TRUNCATE ' . PMA_backquote($each_table['TABLE_NAME']))                     . '&amp;zero_rows='                     . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($each_table['TABLE_NAME'])))                     . '" onclick="return confirmLink(this, \'TRUNCATE ';            } else {                $empty_table .= urlencode('DELETE FROM ' . PMA_backquote($each_table['TABLE_NAME']))                     . '&amp;zero_rows='                     . urlencode(sprintf($strTableHasBeenEmptied, htmlspecialchars($each_table['TABLE_NAME'])))                     . '" onclick="return confirmLink(this, \'DELETE FROM ';            }            $empty_table .= PMA_jsFormat($each_table['TABLE_NAME']) . '\')">' . $titles['Empty'] . '</a>';        } else {            $empty_table = $titles['NoEmpty'];        }        $drop_query = 'DROP '            . ($table_is_view ? 'VIEW' : 'TABLE')            . ' ' . PMA_backquote($each_table['TABLE_NAME']);        $drop_message = sprintf(            $table_is_view ? $strViewHasBeenDropped : $strTableHasBeenDropped,            htmlspecialchars($each_table['TABLE_NAME']));    }    // loic1: Patch from Joshua Nye <josh at boxcarmedia.com> to get valid    //        statistics whatever is the table type    if (isset($each_table['TABLE_ROWS'])) {        // MyISAM, ISAM or Heap table: Row count, data size and index size        // is accurate.        if (preg_match('@^(MyISAM|ISAM|HEAP|MEMORY)$@', $each_table['ENGINE'])) {            if ($is_show_stats) {                $tblsize                    =  doubleval($each_table['Data_length']) + doubleval($each_table['Index_length']);                $sum_size                   += $tblsize;                list($formatted_size, $unit) =  PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);                if (isset($each_table['Data_free']) && $each_table['Data_free'] > 0) {                    list($formatted_overhead, $overhead_unit)     = PMA_formatByteDown($each_table['Data_free'], 3, ($each_table['Data_free'] > 0) ? 1 : 0);                    $overhead_size           += $each_table['Data_free'];                }            }            $sum_entries                    += $each_table['TABLE_ROWS'];        } elseif ($each_table['ENGINE'] == 'InnoDB') {            // InnoDB table: Row count is not accurate but data and index            // sizes are.            if ($is_show_stats) {                $tblsize                    =  $each_table['Data_length'] + $each_table['Index_length'];                $sum_size                   += $tblsize;                list($formatted_size, $unit) =  PMA_formatByteDown($tblsize, 3, ($tblsize > 0) ? 1 : 0);            }            //$display_rows                   =  ' - ';            $sum_entries       += $each_table['TABLE_ROWS'];

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久亚洲精品小早川怜子| 国产成人精品一区二| 成人黄色综合网站| 久久精品一区二区三区不卡| 麻豆91在线观看| 欧美久久高跟鞋激| 日韩国产精品久久| 欧美一区二视频| 日韩高清在线一区| 欧美精品一区二区三区四区| 国产成人免费视频网站| 国产精品色呦呦| 91网站最新网址| 亚洲综合小说图片| 欧美日韩精品一区二区三区蜜桃| 亚洲成人av福利| 欧美一区二区观看视频| 国产乱人伦偷精品视频免下载| 欧美国产乱子伦| 91视频免费观看| 肉色丝袜一区二区| 久久久九九九九| 99久久免费视频.com| 一区二区三区美女视频| 日韩午夜激情视频| 国产精品影音先锋| 一区二区三区美女视频| 精品久久久久一区| av午夜精品一区二区三区| 亚洲成人av一区二区三区| 久久新电视剧免费观看| 色www精品视频在线观看| 丁香婷婷综合激情五月色| 成人午夜在线视频| 亚洲地区一二三色| 欧美r级在线观看| 一本色道久久综合亚洲91| 日韩国产一二三区| 国产精品国产三级国产aⅴ无密码| 欧美亚洲一区二区在线观看| 狠狠色丁香久久婷婷综| 亚洲欧美日韩一区二区三区在线观看| 7777精品伊人久久久大香线蕉超级流畅 | 免费观看30秒视频久久| 国产精品久久久久久久久免费樱桃 | 懂色中文一区二区在线播放| 亚洲成人动漫精品| 国产精品视频看| 精品三级在线观看| 欧美综合久久久| www.性欧美| 韩国一区二区三区| 五月激情丁香一区二区三区| 中文字幕欧美区| 日韩午夜电影av| 欧美主播一区二区三区| 成人动漫中文字幕| 国内精品第一页| 免费成人深夜小野草| 亚洲成人免费影院| 亚洲视频免费在线| 国产精品免费免费| 亚洲图片你懂的| 99精品热视频| 亚洲精品一卡二卡| 国产米奇在线777精品观看| 日韩欧美在线观看一区二区三区| 亚洲成人免费在线| 欧美日韩国产高清一区二区 | 7777精品久久久大香线蕉| 99在线视频精品| 99精品一区二区三区| 国产日韩精品视频一区| 国产精品国产馆在线真实露脸 | 亚洲美女精品一区| 欧美三级电影在线观看| 蜜臀精品一区二区三区在线观看 | 亚洲免费观看视频| 亚洲午夜电影在线| 国产成人小视频| 久久精品一区四区| www.色综合.com| 裸体一区二区三区| 一区二区三区在线视频免费| voyeur盗摄精品| 成人激情免费视频| 99re免费视频精品全部| 欧美综合亚洲图片综合区| 欧美在线观看视频在线| 日韩一区二区在线观看| 中文在线资源观看网站视频免费不卡| 亚洲国产精品成人综合色在线婷婷 | 成人免费毛片a| 91亚洲国产成人精品一区二区三 | 亚洲高清免费视频| 亚洲成人www| 国产91对白在线观看九色| 欧美亚洲图片小说| 欧美一级高清片| 蜜乳av一区二区| 亚洲永久免费av| 欧美影片第一页| 国产精品传媒在线| 欧美日韩在线电影| 青青青伊人色综合久久| 日韩视频在线永久播放| 成年人国产精品| 亚洲另类在线视频| 欧美羞羞免费网站| 欧美中文字幕一区| 国产福利一区二区三区在线视频| 亚洲国产成人va在线观看天堂| 精品免费日韩av| 欧美日韩亚洲综合一区| 不卡高清视频专区| 成人久久久精品乱码一区二区三区| 激情六月婷婷综合| 91原创在线视频| 日韩视频一区在线观看| 欧美色爱综合网| 亚洲成人一区二区在线观看| 裸体在线国模精品偷拍| 国产亚洲午夜高清国产拍精品| 一级女性全黄久久生活片免费| 亚洲一区二区在线视频| 久草热8精品视频在线观看| 欧美三电影在线| 精品一区二区三区视频| 久久欧美一区二区| 国产精品国产三级国产三级人妇| 裸体一区二区三区| 在线观看成人小视频| 欧美色视频在线观看| 中文一区在线播放| 麻豆国产欧美日韩综合精品二区| 国产成人免费视频一区| 欧美日韩久久久| av成人免费在线| 成人高清视频在线| 欧美日韩精品系列| 午夜影院久久久| 日韩一区二区影院| 成人h动漫精品一区二区| 亚洲国产日产av| 欧美极品aⅴ影院| 91麻豆精品国产91久久久久| 成人app下载| 国产一区美女在线| 免费观看成人鲁鲁鲁鲁鲁视频| 日本一区二区免费在线| 欧美精品粉嫩高潮一区二区| 国产 日韩 欧美大片| 香蕉乱码成人久久天堂爱免费| 中文字幕精品一区二区三区精品| 欧美日韩不卡在线| 91久久奴性调教| av激情综合网| 成人精品一区二区三区四区 | 日韩精品一区二区三区蜜臀| 色综合色综合色综合色综合色综合 | 欧美日韩大陆在线| 国产成人精品影视| av影院午夜一区| 91丨九色丨国产丨porny| 成人综合激情网| 欧美性受xxxx| 久久这里只有精品6| 国产精品乱子久久久久| 99re视频精品| 亚洲自拍与偷拍| 5566中文字幕一区二区电影| 一区二区在线观看免费| 成人av集中营| 亚洲蜜臀av乱码久久精品| 色哟哟一区二区三区| 日本视频在线一区| 欧美一级高清片| 大桥未久av一区二区三区中文| 亚洲午夜羞羞片| 亚洲一区二区三区四区在线| 欧美嫩在线观看| 国产精品99精品久久免费| 精品三级在线观看| 国产区在线观看成人精品 | 日韩亚洲欧美成人一区| 在线观看成人免费视频| 国产精品自拍网站| 韩国av一区二区三区| 国产一区二区视频在线播放| 亚洲欧美偷拍另类a∨色屁股| 一区二区三区不卡视频| 日韩免费观看2025年上映的电影| 欧美日韩精品一区二区三区四区| 久久久亚洲精华液精华液精华液 | 综合分类小说区另类春色亚洲小说欧美| 亚洲综合成人在线| 91视频免费看| 亚洲精品国产无套在线观 | 日韩精品久久理论片| 在线观看亚洲精品|