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

怎样在网站中加入用户注册程序,第1张

第一步:首先做一个如下页面。

<html>

<head>

<title>申请帐号</title>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">

<style type="text/css">

<!--

.p11 { font-size: 10ptcolor: #000000text-decoration: none}

.c3a {font-size: 9ptcolor: #000000background-color: #ffffffborder: 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: 10ptcolor: #EFFB00background-color: rgb(225,153,0)">

<input type="reset" name="Submit2" value="重来" style="font-size: 10ptcolor: #EFFB00background-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/htmlcharset=gb2312">

<style type="text/css">

<!--

.p11 { font-size: 10ptcolor: #000000text-decoration: none}

.c3a {font-size: 9ptcolor: #000000background-color: #ffffffborder: 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: 10ptcolor: #EFFB00background-color: rgb(225,153,0)">

<input type="reset" name="Submit2" value="重来" style="font-size: 10ptcolor: #EFFB00background-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>

注册网站流程推荐去在线网站建设平台查询,在线做网站,零代码建站,一键生成电脑网站+手机网站+微信网站,3000+网站模板,1500+万用户建站之选,方便快捷,值得选择。建立一个平台网站需要以下几步:

首先要挑选一个开源的网站程序,这个很重要,这个直接关系想要搭建的是什么样的平台,是商城,论坛,博客,门户,导航还是其它,这也是看自己想要做什么方面的内容了。然后就是需要一个域名,这个是必须之一,这个域名的申请,还是建议大家到比较大一点的正规的互联网营销公司网站去。再者就是程序所要放置的地方了,那就是网站的空间,网站里的内容,图片,资料等都会在这个空间里,包括数据库等。要注意一点的是,买空间的时候强烈建议去买国内的空间,国外的空间速度会比较慢。这步也是比较关键,也是很重要的一个步骤,那就是备案的问题,根据国家法律的规定,为了能够创造一个良好的互联网环境,能够更好地来管理互联网,在国内购买的空间必须要备案,否则你的网站不会上线,一般网站的备案时需要提供个人信息,网站的实际拥有,备案的时间要一个月的时间,有的网站提供在线提供免费备案。

想要了解更多有关网站的相关问题,推荐选择在线网站建设平台。在线网站建设平台的自助建站系统研究了市场上各大主流企业网站的结构和版式设计,并加以完善,制作了数千种精美绝伦的模版供客户选择,网站的布局可以根据需要自行调整,完全颠覆了传统网站建设无法修改的局限。最主要的是更换模版和样板都是不需要另外收取费用的,能为客户节省很大一部分开支,得到广大用户一致好评。

3000+模板任你选!点击这里获取简单快捷的网站制作工具:网站建设平台


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8043492.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存