自动生成验证码,前两位字母,后六位数字

 

 

function v_code(){
//生成采购商验证ID----- start-------
		$length= 8;
        $chars1 = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
		$chars2 = '0123456789';
        $max1 = strlen($chars1) - 1;
		$max2 = strlen($chars2) - 1;
        mt_srand((double)microtime() * 1000000);
        for($i = 0; $i < 2; $i++) {
            $card .= $chars1[mt_rand(0, $max1)];
         }
		for($i = 0; $i < 6; $i++){
		    $card .= $chars2[mt_rand(0, $max2)];
		}
		//生成完毕----- end -------
        echo $card;
}

 

<tr class="verifyID_y">
  <th><em class="red">*</em><{t}>生成验证ID:<{/t}></th>
<td><{input  type="text" name="verifyID"  vtype="required" class="inputstyle" id="verifyID" }></td>
<td><input type="button" value="生成验证ID" οnclick="vCode()"></td></tr>

 

	function vCode(){
		new Request({
					url:'index.php?app=b2c&ctl=admin_member&act=v_code',
					onSuccess:function(res)
					{
						$('verifyID').value = res;
				}
		}).post();
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值