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


PHP captcha::form方法代码示例

本文整理汇总了PHP中captcha::form方法的典型用法代码示例。如果您正苦于以下问题:PHP captcha::form方法的具体用法?PHP captcha::form怎么用?PHP captcha::form使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在captcha的用法示例。


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

示例1: ewiki_aedit_antibot_checkbox

function ewiki_aedit_antibot_checkbox($id, &$data, $action)
{
    if (!$GLOBALS["ewiki_no_bot"]) {
        include_once "plugins/lib/captcha.php";
        return captcha::form();
    }
}
开发者ID:gpuenteallott,项目名称:rox,代码行数:7,代码来源:antibot_captcha.php

示例2: T_

echo T_('Confirm Password');
?>
:</label>
                        <input type='password' name='password_2' id='password_2' />
                    </div>

                    <br />
                    <div class="registerInformation">
                        <span><?php 
echo T_('* Required fields');
?>
</span>
                    </div>

                    <?php 
if (AmpConfig::get('captcha_public_reg')) {
    echo captcha::form("&rarr;&nbsp;");
    AmpError::display('captcha');
}
?>

                    <div class="registerButtons">
                        <input type="hidden" name="action" value="add_user" />
                        <input type='submit' name='submit_registration' id='submit_registration' value='<?php 
echo T_('Register User');
?>
' />
                    </div>
                </form>
<?php 
UI::show_footer();
开发者ID:cheese1,项目名称:ampache,代码行数:31,代码来源:show_user_registration.inc.php

示例3: etranslate

            <td class="boxbottom boxright" colspan="2">
              <label><input type="text" size="2" name="rem_rep_days" value="' . $rem_rep_days . '" />' . $daysStr . '</label>&nbsp;
              <input type="text" size="2" name="rem_rep_hours" value="' . $rem_rep_hours . '" /><label>' . $hoursStr . '</label>&nbsp;
              <input type="text" size="2" name="rem_rep_minutes" value="' . $rem_rep_minutes . '" /><label>' . $minutStr . '</label>
            </td>
          </tr>
        </tbody>
      </table>' . ($useTabs ? '
    </div>
<!-- End tabscontent_pete -->' : '
    </fieldset>');
    }
    if (file_exists('includes/classes/captcha/captcha.php') && $login == '__public__' && !empty($ENABLE_CAPTCHA) && $ENABLE_CAPTCHA == 'Y') {
        if (function_exists('imagecreatetruecolor')) {
            include_once 'includes/classes/captcha/captcha.php';
            echo captcha::form();
        } else {
            etranslate('CAPTCHA Warning');
        }
    }
    echo '
    </div>
<!-- End tabscontent -->';
    echo '
      <table summary="">
        <tr>
          <td>
            <script type="text/javascript">
<!-- <![CDATA[
              document.writeln ( \'<input type="button" value="' . $saveStr . '" onclick="validate_and_submit()" />\' )
//]]> -->
开发者ID:GetInTheGo,项目名称:JohnsonFinancialService,代码行数:31,代码来源:edit_entry.php


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