[音乐资源下载系统]详细设计说明书[V1.0(版本号)]拟制人_______张烨_________审核人_______王艳君_________批准人_______王艳君_________[二零一二年九月二十五日][音乐资源下载系统]——详细设计说明书1详细设计说明书1.引言1.1编写目的在此编写本说明书是为了更好的给用户阐述一个音乐资源下载系统的数据以及各个时期的详细的说明,其次就是对本系统在实施中的各个模块进行说明,使用户能够进行理解本系统以及更好的使用本系统,程序员可以参考本说明书对软件的设计进行编写。在以后的软件测试以及软件维护阶段也可参考此说明书,以便于了解在概要设计过程中所完成的各模块设计结构,或在修改时找出在本阶段设计的不足或错误。1.2背景开发软件名称:音乐资源下载系统项目任务提出者:张烨项目开发者:西安欧亚学院用户:所有音乐爱好者实现单位:西安欧亚学院项目与其他软件系统关系:本项目采用客户机与服务器原理,客户端是基于windowsxp以及以上系统,开发使用PHP语言开发,服务器采用windows为操作系统的工作站,是采用MySql为开发软件的数据库服务程序。1.3定义WINDOWS:本系统所采用的操作系统。MySQL:系统服务器所使用的数据库管理系统(DBMS)。1.4参考资料软件工程及其应用周苏、王文等天津科学技术出版社软件工程张海藩清华大学出版社《软件文档写作教程》马平、黄冬梅电子工业出版社2.系统的结构数据库音乐资源更新系统管理员网页显示客户通过网页查询付费下载资源[音乐资源下载系统]——详细设计说明书23.登录模块设计说明3.1模块描述该模块主要是为了在登录系统的时候区分管理员与普通用户,并且跳转至各自的操作界面,更好的保证了系统的安全性。3.2功能该模块具有的功能包括了对用户账户的验证,还包括了对管理员与普通用户的区分。3.3性能该模块需要具备严格的验证信息,以保证对用户信息严格的验证。3.4输入项例如:姓名:阿斯达是的撒年龄:3003.5输出项姓名不符合年龄输入错误3.6设计方法(算法)?phpinclude_once(top.php);?tablewidth=780height=370border=0align=centercellpadding=0cellspacing=0trtdwidth=175valign=toptablewidth=175height=120border=0align=centercellpadding=0cellspacing=1bgcolor=#D2D7DDtrtdbgcolor=#F2F3F5valign=top?phpinclude_once(left.php);?/tdtdwidth=10 /tdtdwidth=595valign=toptablewidth=200border=0align=centercellpadding=0cellspacing=0trtdimgsrc==590height=35/td/tr/table[音乐资源下载系统]——详细设计说明书3tablewidth=500height=10border=0align=centercellpadding=0cellspacing=0trtd /td/tr/tabletablewidth=500height=300border=0align=centercellpadding=0cellspacing=0scriptlanguage=javascriptfunctionchkinput_login(form){//断用户是否输入了用户名if(form.usernc.value==){alert(请输入用户昵称!);//如果没输入用户名,则弹出一个提示框提示未输入用户名form.usernc.focus();//重新使用户昵称输入框获取焦点return(false);}if(form.userpwd1.value==){alert(请输入注册密码!);form.userpwd1.focus();return(false);}if(form.userpwd2.value==){alert(请输入确认密码!);form.userpwd2.focus();return(false);}if(form.userpwd1.value!=form.userpwd2.value){//判断密码与确认密码是否相同alert(注册密码于确认密码不同!);form.userpwd1.focus();return(false);}if(form.userpwd1.value.length6){//判断密码长度是否大于或等于6位alert(注册密码应大于6位!);[音乐资源下载系统]——详细设计说明书4form.userpwd1.focus();return(false);}if(form.truename.value==){alert(请输入真实姓名!);form.truename.focus();return(false);}if(form.sex.value==){alert(请选择性别!);form.sex.focus();return(false);}if(form.email.value==){alert(请输入E-mail地址!);form.email.focus();return(false);}if(form.email.value.match(/^(.+)@(.+)$/)==null){//判断邮件地址的格式是否正确alert(请输入正确的E-mail地址!);form.email.focus();return(false);}if(form.tel.value==){alert(请输入联系电话!);form.tel.focus();return(false);}if(isNaN(form.tel.value)){//判断用户输入的联系电话是否由数字组成alert(电话号只能由数字组成!);form.tel.focus();return(false);[音乐资源下载系统]——详细设计说明书5}if(form.qq.value==){alert(请输入QQ号码!);form.qq.focus();return(false);}if(isNaN(form.qq.value)){alert(QQ号号只能由数字组成!);form.qq.focus();return(false);}if(form.address.value==){alert(请输入联系地址!);form.address.focus();return(false);}return(true);//如果满足上述条件,则返回True值,并提交表单}/scriptscriptlanguage=javascriptfunctionopen_chknc(x){window.open(chkusernc.php?nc=+x,newframe,top=250,left=450,width=150,height=100,menubar=no,toobar=no,location=no,scrollbars=no,resizeable=no);}/scriptformname=form_regmethod=postaction=savereg.phponSubmit=returnchkinput_login(this)tr[音乐资源下载系统]——详细设计说明书6tdwidth=120height=30divalign=center用户昵称:/div/tdtdcolspan=2tablewidth=350height=25border=0align=leftcellpadding=0cellspacing=0trtdwidth=187 inputtype=textname=userncsize=25class=inputcss/tdtdwidth=163inputtype=buttonname=button_chkuserncvalue=是否已用onClick=open_chknc(form_reg.usernc.value)/td/tr/table/td/trtrtdheight=30divalign=center密 码:/div/tdtdheight=30colspan=2 inputtype=passwordname=userpwd1size=25class=inputcss/td/trtrtdheight=30divalign=center确认密码:/div/tdtdheight=30colspan=2 inputtype=passwordname=userpwd2size=25class=inputcss/td/trtrtdheight=30divalign=center真实姓名:/div/tdtdheight=30colspan=2 inputtype=textname=truenamesize=25class=inputcss/td/trtrtdheight=30divalign=center性 别:/div/tdtdheight=30colspan=2 selectname=sexoptionvalue=请选择/optionoptionvalue=男-男-/optionoptionvalue=女-女-/option/select/td[音乐资源下载系统]——详细设计说明书7/trtrtdheight=30divalign=centerE-mail:/div/tdtdheight=30colspan=2 inputtype=textname=emailsize=25class=inputcss/td/trtrtdheight=30divalign=center联系电话:/div/tdtdheight=30colspan=2 inputtype=textname=telsize=25class=inputcss/td/trtrtdheight=30divalign=centerQQ号码:/div/tdtdheight=30colspan=2 inputtype=textname=qqsize=25class=inputcss/td/trtrtdheight=30divalign=center头像选择:/div/tdtdwidth=92height=30 selectname=photoonchange=form_reg.user_face.src=this.value?phpfor($i=0;$i=11;$i++){?optionvalue=?phpecho}?/select/tdtdwidth=288 imgid=user_facesrc==60height=60/td/