<span class="unnamed3">注册部分: <br> 注册步骤1: class/register_step1.php <br><HTML> <br><HEAD> <br><meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <br><TITLE>班级通讯录-注册第一步</TITLE> <br></HEAD> <br><BODY BGCOLOR="#FFFFFF"> <br><?php <br/>include "config.php"; <br/>if ($Submit){ <br/>$answers1=trim($answers1); <br/>$answers2=trim($answers2); <br/>if (!($answers1==$answer1)||!($answers2==$answer2)){ <br/>echo "回答错误!<a href='javascript:history.back()'>返回</a>"; <br>exit; <br>} <br>echo "回答正确,<a href='register_step2.php?answer=right'>进入第二步</a>。"; <br>exit; <br>} <br>?> <br><table width="73%" border="0" cellspacing="0" cellpadding="0" align="center" height="190"> <br> <tr> <br> <td height="76"> <br> <div align="center"><img src="http://edu.cnzz.cn/NewsInfo/image/classlogo.gif" width="224" height="60"></div> <br> </td> <br> </tr> <br> <tr> <br> <td height="32"> <br> <div align="center">注册第一步-身份验证</div> <br> </td> <br> </tr> <br> <tr> <br> <td height="153"> <br> <p align="center">请回答以下问题</p> <br> <form name="form1" method="post" action="<? echo $PHP_SELF;?>"> <br> <div align="center">1.<? echo $question1?><br> <br> 您的回答 <br> <input type="text" name="answers1"> <br> <br> <br> 2.<? echo $question2?><br> <br> 您的回答 <br> <input type="text" name="answers2"> <br> <br> <br> <input type="submit" name="Submit" value="确认"> <br> <input type="reset" name="cancel" value="重写"> <br> </div> <br> </form> <br> <p align="center"><br> <br> <br> <br> 实在想不起来了,<a href="querypsw.php">问问管理员吧</a>。<br> <br> </p> <br> </td> <br> </tr> <br></table> <br></BODY> <br></HTML> <br>注册步骤2: class/register_step2.php <br><HTML> <br><HEAD> <br><meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <br><TITLE>94级1班通讯录-注册第二步</TITLE> <br></HEAD> <br><BODY BGCOLOR="#FFFFFF"> <br><?php <br/>if (!$answer=="right"){ //页面保护 <br/>echo "请不要投机取巧!"; <br/>exit; <br/>} <br/>include "config.php"; <br/>if ($submit){ <br/>if (!$username||!$psw||!$psw2||!$name||!$ad||!$ph||!$email){ //检查是否填写完整 <br/> echo "对不起,您2必须填所有带*的项目!<BR>"."<a href='javascript:history.back()'>返回</a>"; <br> exit; <br> } <br>$username=trim($username); <br>$psw=trim($psw); <br>$psw2=trim($psw2); <br>$name=trim($name); <br>$birth=$year.'-'.$month.'-'.$day; <br>$work=trim($work); <br>$ad=trim($ad); <br>$post=trim($post); <br>$ph=trim($ph); <br>$bp=trim($bp); <br>$email=trim($email); <br>$oicq=trim($oicq); <br>$account=strip_tags(trim($account));//去掉首尾空格及html标记 <br>$signature=strip_tags(trim($signature)); <br>//检验此名字是否已被注册 <br>$result = mysql_query("SELECT name FROM user where name='$name'",$db); <br>if (mysql_num_rows($result)!=0){ <br>echo "此名字已有人注册!"."<a href='javascript:history.back()'>重新填写</a> "."忘记密码,向管理员<a href='querypsw.php'>索要密码</a>"; <br>exit; <br>} <br>//检验用户名是否被使用 <br>$result = mysql_query("SELECT user FROM user where user='$username'",$db);//若返回列的数目不为0,说明此用户名已有人使用 <br>if (mysql_num_rows($result)!=0){ <br>echo "此用户名已有人使用!"."<a href='javascript:history.back()'>重新填写</a>"; <br>exit; <br>} <br>//检查密码重复是否正确 <br>if (!$psw==$psw2){ <br>echo "请确认密码,<a href='javascript:history.back()'>返回</a>"; <br>exit; <br>} <br>//检查email的合法性 <br>if(!ereg('^[-!#$%&'*+./0-9=?A-Z^_`a-z{|}~]+'.'@'.'[-!#$%&'*+\/0-9=?A-Z^_`a-z{|}~]+.'.'[-!#$%&'*+\./0-9=?A-Z^_`a-z{|}~]+$',$email)&&$email){ <br> echo "email不合法!<BR>"."<a href='javascript:history.back()'>重填</a><BR>"; <br> exit;} <br>//写入数据库 <br> $sql="INSERT INTO user (user,psw,name,sex,birth,work,ad,post,ph,bp,email,oicq,account,signature,face) VALUES ('$username','$psw','$name','$sex','$birth','$work','$ad','$post','$ph','$bp','$email','$oicq','$account','$signature','$face')"; <br>$result = mysql_query($sql,$db); <br>mysql_close($db); <br>//发祝贺邮件 <br>$subject="祝贺你成功注册".$sitename."!";//主题 <br>$message=$name.",你好:<BR> 祝贺你成功注册同学录!您的用户名为".$username.",密码为".$psw."<BR>现在登陆<a href='$url'>$sitename</a>";//信件内容 <br>$headers .= "Content-Type: text/html; charset=gb2312n"; // Mime type <br>mail($email,$subject,$message,$headers);//离线状态下调试时,这一句可能会出错,不必管它,传到服务器上即可。 <br>echo "恭喜您注册成功!一封欢迎信已发到您的邮箱,请注意查收。","<a href='../index.php'>现在登录</a>"; <br>exit; <br>} <br>?> <br><table width='95%' border='0' cellspacing='0' cellpadding='0' align='center'> <br> <tr> <br> <td colspan="2"> <br> <div align="center"><img src="http://edu.cnzz.cn/NewsInfo/image/classlogo.gif" width="224" height="60"></div> <br> </td> <br> </tr> <br> <tr> <br> <td> <br> <div align="center">注册第二步-填写个人资料<br> <br> 注意不要有空格,带*的项目为必填。</div> <br> </td> '<? echo $PHP_SELF;?>?answer=right'> bordercolor="# FFCC00"> <br> <input type="Text" name="username size = " br> <br> "<br>>>&lt;; option&gt; 1981&lt;/option&gt; <br>; option&gt;/option&gt; <br>; 1977&lt;/option&gt; <オプション>1976</オプション> <br> <オプション>1975</オプション> <br> <option>1974</option> <br> <option>1973</option> <br> <オプション>1972</オプション> <br> <オプション>1971</オプション> <br> <オプション>1970</オプション> <br> <option>1969</option> <br> <オプション>1968</オプション> <br> <option>1967</option> <br> <option>1966</option> <br> <option>1965</option> <br> <オプション>1964</オプション> <br> <オプション>1963</オプション> <br> <オプション>1962</オプション> <br> <オプション>1961</オプション> <br> <オプション>1960</オプション> <br> <オプション>1959</オプション> <br> <オプション>1958</オプション> <br> <オプション>1957</オプション> <br> <オプション>1956</オプション> <br> <オプション>1955</オプション> <br> <オプション>1954</オプション> <br> </select> <br> 年 <br> <select name="month"> <br> 01 <br> <オプション>02</オプション> <br> <オプション>03</オプション> <br> <オプション>04</オプション> <br> <オプション>05</オプション> <br> <オプション>06</オプション> <br> <オプション>07</オプション> <br> <オプション>08</オプション> <br> <オプション>09</オプション> <br> 10オプション> <br> <オプション>11</オプション> <br> <オプション>12</オプション> <br> </select> <br> 月 <br> <select name="day"> <br> <選択されたオプション>01</option> <br> <オプション>02</オプション> <br> <オプション>03</オプション> <br> <オプション>04</オプション> <br> <オプション>05</オプション> <br> <オプション>06</オプション> <br> <オプション>07</オプション> <br> <オプション>08</オプション> <br> <オプション>09</オプション> <br> 10オプション> <br> <オプション>11</オプション> <br> <オプション>12</オプション> <br> <オプション>13</オプション> <br> <オプション>14</オプション> <br> 15オプション> <br> <オプション>16</オプション> <br> <オプション>17</オプション> <br> <オプション>18</オプション> <br> <オプション>19</オプション> <br> <オプション>20</オプション> <br> <オプション>21</オプション> <br> <オプション>22</オプション> <br> <オプション>23</オプション> <br> <オプション>24</オプション> <br> <オプション>25</オプション> <br> <オプション>26</オプション> <br> <オプション>27</オプション> <br> <オプション>28</オプション> <br> <オプション>29</オプション> <br> <オプション>30</オプション> <br> <オプション>31</オプション> <br> </select> <br> 日<br> <br> 工作单位: <br> <input type='Text' name='work' size='30' maxlength='50'> <br> <br> <br> 通讯地址: <br> <input type='Text' name='ad' size='30' maxlength='50'> <br> *<br> <br> 邮编: <br> <input type='Text' name='post' size='6' maxlength='6'> <br> <br> <br>電話:「テキスト」name = 'bp' size = 'maxlength = '15' maxlength = '35'&gt;&lt;/gt; >> <br> 好きなアバターを選択してください:<br> 「32」> /face/icon2.gif " width="32" height="32"> "http://edu.cnzz.cn/NewsInfo/image/face/icon3.gif" width="32" height="32"> ="3"> ; <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon4.gif" width="32" height="32"> <br> <入力タイプ= "radio" name="face" value="4"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon5.gif" width "32" height= "32"> <br/> .cn/NewsInfo/image/face/icon6.gif" width="32" height="32"> > <img src="http://edu.cnzz.cn/ NewsInfo/image/face/icon7.gif" width="32" height="32"> name="face" value="7"> <br> 「> /icon9.gif」 height="32"><br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon10.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="10"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon11.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="11"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon12.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="12"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon13.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="13"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon14.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="14"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon15.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="15"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon16.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="16"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon17.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="17"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon18.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="18"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon19.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="19"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon20.gif" width="32" height="32"> <br> <input type="radio" name="face" value="20"> <br> <br> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon21.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="21"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon22.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="22"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon23.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="23"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon24.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="24"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon25.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="25"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon26.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="26"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon27.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="27"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon28.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="28"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon29.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="29"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon30.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="30"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon31.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="31"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon32.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="32"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon33.gif" width="32" height="32"> <br> <input type="radio" name="face" value="33"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon34.gif" width="32" height="32"> <br> <input type="radio" name="face" value="34"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon35.gif" width="32" height="32"> <br> <input type="radio" name="face" value="35"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon36.gif" width="32" height="32"> <br> <input type="radio" name="face" value="36"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon37.gif" width="32" height="32"> <br> <input type="radio" name="face" value="37"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon38.gif" width="32" height="32"> <br> <input type="radio" name="face" value="38"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon39.gif" width="32" height="32"> <br> <input type="radio" name="face" value="39"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon40.gif" width="32" height="32"> <br> <input type="radio" name="face" value="40"> <br> <br> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon41.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="41"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon42.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="42"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon43.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="43"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon44.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="44"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon45.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="45"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon46.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="46"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon47.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="47"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon48.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="48"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon49.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="49"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon50.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="50"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon51.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="51"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon52.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="52"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon53.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="53"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon54.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="54"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon55.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="55"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon56.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="56"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon57.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="57"> <br/> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon58.gif" width="32" height="32"> <br/> <input type="radio" name="face" value="58"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon59.gif" width="32" height="32"> <br> <input type="radio" name="face" value="59"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon60.gif" width="32" height="32"> <br> <input type="radio" name="face" value="60"> <br> <br> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon61.gif" width="32" height="32"> <br> <input type="radio" name="face" value="61"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon62.gif" width="32" height="32"> <br> <input type="radio" name="face" value="62"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon63.gif" width="32" height="32"> <br> <input type="radio" name="face" value="63"> <br> <img src="http://edu.cnzz.cn/NewsInfo/image/face/icon64.gif" width="32" height="32"> <br> <input type="radio" name="face" value="64"> <br> <br> <br> </td> <br> </tr> <br> </table> <br> <div align="center"> <br> <br> <br> <input type='Submit' name='submit' value='提交'> <br> <input type='reset' name='Reset' value='重写 '> <br> </div> <br> </form> <br> </td> <br> </tr> <br></table> <br></select></select></span>