当前位置: 首页>>代码示例>>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;未经允许,请勿转载。