动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   PHP → 阅读文章

 简单用户注册程序

作者来源: 
阅读 数 464 人次 , 2006-4-18 15:51:00 

第一步:首先做一个如下页面。
<html>
<head>
<title>申请帐号</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
.p11 {  font-size: 10pt; color: #000000; text-decoration: none}
.c3a {font-size: 9pt; color: #000000; background-color: #ffffff; border: 1 solid #ff9900}
-->
</style>
</head>

<body bgcolor="#FFFFFF" topmargin="0">
<table width="440" border="0" cellspacing="0" cellpadding="0" align="center">
  <form method="post" action="zc.php">
    <tr>  
      <td width="230"><img src="/images/login.gif" width="200" height="30"></td>
      <td width="210" class="p11" valign="bottom"><font color="#FF6699">*</font>为必填项</td>
    </tr>
   
</table>
  <table width="440" border="1" cellspacing="0" cellpadding="0" align="center" bgcolor="#eeeeee" bordercolordark="#eeeeee" bordercolorlight="#ffcf60">
    <tr>  
      <td colspan="2">
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="56%">  
              <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" height="170">
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">用户名:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="text" name="name" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font></span> </td>
                </tr>
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">密码:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="password" name="word" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font></span> </td>
                </tr>
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">确认密码:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="password" name="pass" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font> </span></td>
                </tr>
                <tr>  
                  <td width="111" height="29" class="p11">  
                    <div align="right">提示问题:</div>
                  </td>
                  <td width="207" height="29" class="p11">  
                    <input type="text" name="ask" size="20" class="c3a">
                  </td>
                </tr>
                <tr>  
                  <td width="111" height="28" class="p11">  
                    <div align="right">答案提示:</div>
                  </td>
                  <td width="207" height="28" class="p11">  
                    <input type="text" name="answer" size="20" class="c3a">
                  </td>
                </tr>
                <tr>  
                  <td colspan="2">  
                    <div align="center">  
                      <input type="submit" name="Submit" value="下一步" style="font-size: 10pt;color: #EFFB00; background-color: rgb(225,153,0)">
                      <input type="reset" name="Submit2" value="重来" style="font-size: 10pt;color: #EFFB00; background-color: rgb(225,153,0)">
                    </div>
                  </td>
                </tr>
              </table>
            </td>
            <td width="44%">
              <div align="center"><img src="/images/login1.gif" width="120" height="90"></div>
            </td>
          </tr>
        </table>
      </td>
    </tr></form>
  </table>

</body>
</html>

第二步:注册执行程序。
<?
mysql_connect("localhost","username","password")         /*请修改用户名和密码*/
or die("无法连接数据库,请重来");

mysql_select_db("数据库名")
or die("无法选择数据库,请重来");
$query="select id from 数据库表名 where username='$name'";   
/*从数据库中寻找相同名字的用户*/
$result=mysql_query($query);
$numrows=mysql_num_rows($result);
if($numrows !=0)  

/*如果找到了相同的用户的话,出现如下提示。*/
{
$temp='已有人注册此名,请重新选择名字!';

}

else
{
if ($word != $pass)
{
$temp = "密码输入不一致!";
}
else
{
if (!eregi("^[a-z][a-z0-9_.]{3,19}$",$name))
{
$temp = "用户名非法.";
}
else
{
$query="insert into MemberAuth values('0','$name','$word','1','$ask','$answer')"; /*找不到相同的就输入新的用户资料*/
mysql_query($query);
$temp = "<img src=imagessuee.gif><br><a href='javascript:window.close()'>关闭窗口</a>";
}
}
}
?>
<html>
<head>
<title>申请帐号</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
.p11 {  font-size: 10pt; color: #000000; text-decoration: none}
.c3a {font-size: 9pt; color: #000000; background-color: #ffffff; border: 1 solid #ff9900}
-->
</style>
</head>

<body bgcolor="#FFFFFF" topmargin="0">
<table width="440" border="0" cellspacing="0" cellpadding="0" align="center">
  <form method="post" action="zc.php">
      <tr>  
      <td width="230"><img src="/images/login.gif" width="200" height="30"></td>
      <td width="210" class="p11" valign="bottom"><font color="#FF6699">*</font>为必填项</td>
    </tr>
   
</table>
  <table width="440" border="1" cellspacing="0" cellpadding="0" align="center" bgcolor="#eeeeee" bordercolordark="#eeeeee" bordercolorlight="#ffcf60">
    <tr>  
      <td colspan="2">
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="56%">  
              <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" height="170">
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">用户名:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="text" name="name" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font></span> </td>
                </tr>
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">密码:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="password" name="word" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font></span> </td>
                </tr>
                <tr>  
                  <td width="111" class="p11">  
                    <div align="right">确认密码:</div>
                  </td>
                  <td width="207" class="p11">  
                    <input type="password" name="pass" size="20" class="c3a">
                  <span class="p11"><font color="#FF6699">*</font> </span></td>
                </tr>
                <tr>  
                  <td width="111" height="29" class="p11">  
                    <div align="right">提示问题:</div>
                  </td>
                  <td width="207" height="29" class="p11">  
                    <input type="text" name="ask" size="20" class="c3a">
                  </td>
                </tr>
                <tr>  
                  <td width="111" height="28" class="p11">  
                    <div align="right">答案提示:</div>
                  </td>
                  <td width="207" height="28" class="p11">  
                    <input type="text" name="answer" size="20" class="c3a">
                  </td>
                </tr>
                <tr>  
                  <td colspan="2">  
                    <div align="center">  
                      <input type="submit" name="Submit" value="下一步" style="font-size: 10pt;color: #EFFB00; background-color: rgb(225,153,0)">
                      <input type="reset" name="Submit2" value="重来" style="font-size: 10pt;color: #EFFB00; background-color: rgb(225,153,0)">
                    </div>
                  </td>
                </tr>
              </table>
            </td>
            <td width="44%" class=p11 align=center>
             
            <? echo $temp; ?>
                           
            </td>
          </tr>
        </table>
      </td>
    </tr></form>
  </table>

</body>
</html>
  
 
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:用PHP+MYSQL实现论坛里的分级+分页显示
· 下一篇:如何用php作线形图的函数
· Apache服务器的用户认证 (转)
· 定义一个类 -- Classes and Objects in PHP5
· 判断在线用户的方法
· 如何实现日期比较,暨实现显示5天内,显示10天内的记录
· 社区(php&&mysql)五


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077