當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PMA_getDBComment函數代碼示例

本文整理匯總了PHP中PMA_getDBComment函數的典型用法代碼示例。如果您正苦於以下問題:PHP PMA_getDBComment函數的具體用法?PHP PMA_getDBComment怎麽用?PHP PMA_getDBComment使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了PMA_getDBComment函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: PMA_getHtmlForDatabaseComment

/**
 * Get HTML output for database comment
 *
 * @param string $db database name
 *
 * @return string $html_output
 */
function PMA_getHtmlForDatabaseComment($db)
{
    $html_output = '<div class="operations_half_width">' . '<form method="post" action="db_operations.php" id="formDatabaseComment">' . PMA_URL_getHiddenInputs($db) . '<fieldset>' . '<legend>';
    if (PMA\libraries\Util::showIcons('ActionLinksMode')) {
        $html_output .= PMA\libraries\Util::getImage('b_comment.png') . '&nbsp;';
    }
    $html_output .= __('Database comment');
    $html_output .= '</legend>';
    $html_output .= '<input type="text" name="comment" ' . 'class="textfield" size="30"' . 'value="' . htmlspecialchars(PMA_getDBComment($db)) . '" />' . '</fieldset>';
    $html_output .= '<fieldset class="tblFooters">' . '<input type="submit" value="' . __('Go') . '" />' . '</fieldset>' . '</form>' . '</div>';
    return $html_output;
}
開發者ID:itgsod-philip-skalander,項目名稱:phpmyadmin,代碼行數:19,代碼來源:operations.lib.php

示例2: PMA_getHtmlForDatabaseComment

/**
 * Get HTML output for database comment
 *
 * @param string $db database name
 *
 * @return string $html_output
 */
function PMA_getHtmlForDatabaseComment($db)
{
    $html_output = '<div class="operations_half_width">' . '<form method="post" action="db_operations.php">' . PMA_generate_common_hidden_inputs($db) . '<fieldset>' . '<legend>';
    if (in_array($GLOBALS['cfg']['ActionLinksMode'], array('icons', 'both'))) {
        $html_output .= '<img class="icon ic_b_comment" ' . 'src="themes/dot.gif" alt="" />';
    }
    $html_output .= __('Database comment: ');
    $html_output .= '</legend>';
    $html_output .= '<input type="text" name="comment" ' . 'class="textfield" size="30"' . 'value="' . htmlspecialchars(PMA_getDBComment($db)) . '" />' . '</fieldset>';
    $html_output .= '<fieldset class="tblFooters">' . '<input type="submit" value="' . __('Go') . '" />' . '</fieldset>' . '</form>' . '</div>';
    return $html_output;
}
開發者ID:fanscky,項目名稱:HTPMS,代碼行數:19,代碼來源:operations.lib.php

示例3: PMA_generate_common_hidden_inputs

         * database comment
         */
        ?>
    <form method="post" action="db_operations.php">
    <?php 
        echo PMA_generate_common_hidden_inputs($db);
        ?>
    <fieldset>
        <legend>
        <?php 
        echo PMA_getIcon('b_comment.png', $strDBComment, false, true);
        ?>
        </legend>
        <input type="text" name="comment" class="textfield" size="30"
            value="<?php 
        echo htmlspecialchars(PMA_getDBComment($db));
        ?>
" />
        <input type="submit" value="<?php 
        echo $strGo;
        ?>
" />
    </fieldset>
    </form>
        <?php 
    }
    /**
     * rename database
     */
    ?>
    <form method="post" action="db_operations.php"
開發者ID:lavsurgut,項目名稱:autoauc2,代碼行數:31,代碼來源:db_operations.php


注:本文中的PMA_getDBComment函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。