php 验证码代码

1.js代码

function fleshVerify(type){ 
//重载验证码
var timenow = new Date().getTime();
if (type)
{
$('verifyImg').src= '/os/index.php/Admin/Public/verify/adv/1/'+timenow;
}else{
$('verifyImg').src= '/os/index.php/Admin/Public/verify/'+timenow;
}

}
View Code
<script language="JavaScript">
<!--
    if(top!=self)
    if(self!=top) top.location=self.location;
//-->
</script>
View Code
//获取username 焦点
<body onload="javascript:document.myform.username.focus();">

<form action="#" method="post" name="myform">
<input name="username" type="text" class="ipt" value="" />
View Code
<?php 
$n=1;
if(is_array($info))
foreach($info AS $v){
    echo $v['url'];
    echo title_style($v[style]);
    echo str_cut($v['title'],40);
}
$n++;
unset($n);
?>
View Code
原文地址:https://www.cnblogs.com/suihui/p/4281374.html