当前位置: 首页>>代码示例>>PHP>>正文


PHP PMA_getDbLink函数代码示例

本文整理汇总了PHP中PMA_getDbLink函数的典型用法代码示例。如果您正苦于以下问题:PHP PMA_getDbLink函数的具体用法?PHP PMA_getDbLink怎么用?PHP PMA_getDbLink使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了PMA_getDbLink函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: unset

} // end foreach
unset($i, $max_position, $chunk, $pattern);
*/
?>
<form method="post" action="tbl_create.php"
    onsubmit="return (emptyFormElements(this, 'table') &amp;&amp; checkFormElementInRange(this, 'num_fields', '<?php 
echo str_replace('\'', '\\\'', $GLOBALS['strInvalidFieldCount']);
?>
', 1))">
<fieldset>
    <legend>
<?php 
if ($GLOBALS['cfg']['PropertiesIconic']) {
    echo '<img class="icon" src="' . $pmaThemeImage . 'b_newtbl.png" width="16" height="16" alt="" />';
}
echo sprintf($strCreateNewTable, PMA_getDbLink());
?>
    </legend>
<?php 
if ($is_create_table_priv) {
    ?>
    <?php 
    echo PMA_generate_common_hidden_inputs($db);
    ?>
    <div class="formelement">
        <?php 
    echo $strName;
    ?>
:
        <input type="text" name="table" maxlength="64" size="30" />
    </div>
开发者ID:BGCX261,项目名称:zhe-project-agri-hg-to-git,代码行数:31,代码来源:display_create_table.lib.php

示例2: sprintf

echo $strTableListOptions;
?>
            </select>
        </fieldset>
        <fieldset class="tblFooters">
            <input type="submit" name="modify" value="<?php 
echo $strUpdateQuery;
?>
" />
        </fieldset>
    </td>
    <td width="20">&nbsp;</td>
    <td>
        <fieldset>
            <legend><?php 
echo sprintf($strQueryOnDb, PMA_getDbLink($db));
?>
                </legend>
            <textarea cols="30" name="sql_query" id="textSqlquery"
                rows="<?php 
echo $numTableListOptions > 30 ? '15' : '7';
?>
"
                dir="<?php 
echo $text_dir;
?>
">
<?php 
// 1. SELECT
$last_select = 0;
$encoded_qry = '';
开发者ID:BGCX261,项目名称:zhe-project-agri-hg-to-git,代码行数:31,代码来源:db_qbe.php

示例3: sprintf

 *
 */
require_once './libraries/check_user_privileges.lib.php';
$is_create_table_priv = true;
?>
    <form id="create_table_form_minimal" method="post" action="tbl_create.php"<?php 
echo $GLOBALS['cfg']['AjaxEnable'] ? ' class="ajax"' : '';
?>
>
<fieldset>
    <legend>
<?php 
if ($GLOBALS['cfg']['PropertiesIconic']) {
    echo '<img class="icon" src="' . $pmaThemeImage . 'b_newtbl.png" width="16" height="16" alt="" />';
}
echo sprintf(__('Create table on database %s'), PMA_getDbLink());
?>
    </legend>
    <?php 
echo PMA_generate_common_hidden_inputs($db);
?>
    <div class="formelement">
        <?php 
echo __('Name');
?>
:
        <input type="text" name="table" maxlength="64" size="30" />
    </div>
    <div class="formelement">
        <?php 
echo __('Number of columns');
开发者ID:BGCX262,项目名称:zuozhenshi-prego-svn-to-git,代码行数:31,代码来源:display_create_table.lib.php

示例4: echo

    $numTableListOptions++;
}
?>
            <select name="TableList[]" multiple="multiple" id="listTable"
                size="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>">
                <?php echo $strTableListOptions; ?>
            </select>
        </fieldset>
        <fieldset class="tblFooters">
            <input type="submit" name="modify" value="<?php echo $strUpdateQuery; ?>" />
        </fieldset>
    </td>
    <td width="20">&nbsp;</td>
    <td>
        <fieldset>
            <legend><?php echo sprintf($strQueryOnDb, PMA_getDbLink($db)); ?>
                </legend>
            <textarea cols="80" name="sql_query" id="textSqlquery"
                rows="<?php echo ($numTableListOptions > 30) ? '15' : '7'; ?>"
                dir="<?php echo $text_dir; ?>">
<?php
// 1. SELECT
$last_select = 0;
if (!isset($qry_select)) {
    $qry_select         = '';
}
for ($x = 0; $x < $col; $x++) {
    if (!empty($curField[$x]) && isset($curShow[$x]) && $curShow[$x] == 'on') {
        if ($last_select) {
            $qry_select .=  ', ';
        }
开发者ID:blumenbach,项目名称:blumenbach-online.de,代码行数:31,代码来源:db_qbe.php

示例5: __

echo $options;
?>
            </select>
        </fieldset>
        <fieldset class="tblFooters">
            <input type="submit" name="modify" value="<?php 
echo __('Update Query');
?>
" />
        </fieldset>
    </td>
    <td width="20">&nbsp;</td>
    <td>
        <fieldset>
            <legend><?php 
echo sprintf(__('SQL query on database <b>%s</b>:'), PMA_getDbLink($db));
?>
                </legend>
            <textarea cols="80" name="sql_query" id="textSqlquery"
                rows="<?php 
echo $numTableListOptions > 30 ? '15' : '7';
?>
"
                dir="<?php 
echo $text_dir;
?>
">
<?php 
// 1. SELECT
$last_select = 0;
if (!isset($qry_select)) {
开发者ID:BGCX262,项目名称:zuozhenshi-prego-svn-to-git,代码行数:31,代码来源:db_qbe.php


注:本文中的PMA_getDbLink函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。