怎样在网站中加入用户注册程序

 我来答
leceocn
推荐于2016-04-05
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
第一步:首先做一个如下页面。
<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>
Zoho Mail
2024-11-01 广告
一、搜索“ Zoho企业邮箱”二、填写注册表单填好信息:包含手机号或者电子邮箱地址等信息。三、将公司域名和邮箱做绑定你得先买一个域名,进行域名解析绑定,都有操作视频不用担心,绑定好之后,企业邮箱后缀就是你公司的域名啦,比如AAA@A公司.c... 点击进入详情页
本回答由Zoho Mail提供
全能毅哥
2008-11-08 · TA获得超过127个赞
知道小有建树答主
回答量:226
采纳率:0%
帮助的人:0
展开全部
要看你的网站是一个什么样的网站了。

不过一般的网站,好像都应该有会员注册这个功能呀

除非你的贵是全静态的站!

如果是动态的站,那么你要做一个会员注册,就有些复杂了。

归纳了一下:

第一:建立一个会员数据库

第二:有一个注册会员的模块!

第三:会员管理

第四:会员登陆
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式