當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。