图片验证码的原理是防止恶意注册,实现方法
验证码:<input type="text" name="yanzhengma" />
<iframe src="code/middle.php" height="20px" width="65px" frameborder="0" id="chkimg" scrolling="no" style=" margin-top:5px">
</iframe>
<a href="javascript:chkimg.location.reload();">看不清,换一张</a>
code/middle.php中的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
<title>Insert title here</title>
</head>
<body style="margin:0; padding:0">
<img src="code.php" />
</body>
</html>
code.php中的代码:
<?php
/*---------------紫色风铃--------------
* Info:验证码生产程序;
* Autore: gb2312
* Time : 10-1-7 13:10;
*-------------------------------------*/
session_start();
function yanzheng()
{
$shumu = 4;
define("shumu","$shumu" );
$vchar =array( 0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z);
for($i=0; $i<shumu; $i++)
{
$suiji=$suiji.$vchar[mt_rand(0,61)];
}
if (strlen($suiji)!=4)
yanzheng();
&n
在我们的网站设计过程中,经常会用到多条件查询,本文的源码是一个二手房屋查询的例子。在本例中,我们要实现能够通过地理位置,物业类型,房屋价格,房屋面积及信息发布日期等多个条件查询到客户所需的资料。
查询文件(search.php)
一、生成查询语句:
以下为引用的内容:
<?
$conn=mysql_connect("localhost", ......