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


PHP show_table_footer函数代码示例

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


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

示例1: show_hidden_input

                echo "<input type=\"radio\" name=\"image_active_" . $i . "\" value=\"1\"" . $c1 . "> " . $lang['yes'] . "&nbsp;&nbsp;&nbsp;\n";
                echo "<input type=\"radio\" name=\"image_active_" . $i . "\" value=\"0\"" . $c2 . "> " . $lang['no'] . " ";
                echo "</td>\n";
                echo "<td>" . $lang['field_allow_comments'] . ":<br />";
                if (isset($HTTP_POST_VARS['image_allow_comments_' . $i]) && $HTTP_POST_VARS['image_allow_comments_' . $i] == 0) {
                    $c1 = "";
                    $c2 = " checked=\"checked\"";
                } else {
                    $c1 = " checked=\"checked\"";
                    $c2 = "";
                }
                echo "<input type=\"radio\" name=\"image_allow_comments_" . $i . "\" value=\"1\"" . $c1 . "> " . $lang['yes'] . "&nbsp;&nbsp;&nbsp;\n";
                echo "<input type=\"radio\" name=\"image_allow_comments_" . $i . "\" value=\"0\"" . $c2 . "> " . $lang['no'] . " ";
                echo "</td>\n";
                echo "</tr>\n";
                //        show_hidden_input("user_id_".$i, $user_id);
            }
        }
    }
    if ($num_all_newimages) {
        show_hidden_input("max_dimension", $max_dimension);
        show_hidden_input("num_newimages", $num_newimages);
        show_hidden_input("detailed", $detailed);
        show_hidden_input("subcats", $subcats);
        show_hidden_input("mode", 1);
        show_form_footer($lang['add'], $lang['reset'], $colspan);
    } else {
        show_table_footer();
    }
}
show_admin_footer();
开发者ID:4images,项目名称:4images,代码行数:31,代码来源:checkimages.php

示例2: show_config_input

function show_config_input($type, $config, $error = array())
{
    $title = lang('update', 'config_type_' . $type);
    show_table_header();
    show_table_row(array(array('colspan="3"', $title)), 'header title');
    if ($type == 'target') {
        show_table_row(array(array('colspan="3"', '<font color="red">' . lang('update', 'config_type_target_comment') . '</font>')), 'bg2');
    }
    foreach ($config as $key => $value) {
        $addmsg = $error && $key == 'dbhost' ? lang('update', $error) : '';
        show_table_row(array(array('width="150"', lang('update', 'config_' . $key)), array('class="bg2"', '<input type="text" size="40" name="newconfig[' . $type . '][' . $key . ']" value="' . htmlspecialchars($value) . '">'), array('class="bg2"', '<font color="red">' . $addmsg . '</font>')), 'bg1');
    }
    show_table_footer();
    echo '<br>';
}
开发者ID:v998,项目名称:discuzx-en,代码行数:15,代码来源:global.func.php


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