码迷,mamicode.com
首页 > 其他好文 > 详细

开发一个小项目的流程简述

时间:2018-09-13 20:51:11      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:arch   分享图片   mat   就是   script   weight   bubuko   mes   method   

开发一个小项目的流程简述
(1) 需求分析=>你要做什么 [需求分析师]
(2) 设计我们的数据库、文档 [架构、项目经理]
(3) 设计界面=>静态页面 [前端人员]
(4) 编码==> [程序员php]
(5) 测试阶段[测试工程师(白盒测试/黑盒测试)]
(6) 实施阶段[实施工程师]

1.表的设计

create table student(
id int,
name varchar(20) not null default ‘‘,
chinese decimal(5,2) not null default 0.0,
english decimal(5,2) not null default 0.0,
math decimal(5,2) not null default 0.0
);
insert into student values(1,韩顺平,89,78,90);
insert into student(id,name,chinese,english,math) values(2,张飞,67,98,56),;
insert into student(id,name,chinese,english,math) values(3,宋江,87,78,77);
insert into student(id,name,chinese,english,math) values(4,关羽,88,98,90);
insert into student(id,name,chinese,english,math) values(5,赵云,82,84,67);
insert into student(id,name,chinese,english,math) values(6,欧阳锋,55,85,45);
insert into student(id,name,chinese,english,math) values(7,黄蓉,75,65,30);

2.界面

技术分享图片

3.程序框架图(开发模式)

就是将这个项目有多少个文件,以及文件和文件之间的关系搞清
技术分享图片

 

 
   
 
4. 编码
①登录页面 insertStu.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>添加学生</title>
    <script type="text/javascript">
    </script>
</head>
<body>
     <form action="insetStuAction.php" name="#" method="post">
          学生编号:<input type="text" name="id"><br>
          学生名字:<input type="text" name="name"><br>
          语文成绩:<input type="text" name="chinaese"><br>
          数学成绩:<input type="text" name="math"><br>
          英语成绩:<input type="text" name="english"><br>
           <input type="submit" name="添加学生">
</form>
</body>
</html>

 

②接收控制器 insertStuAction.php
 
 

开发一个小项目的流程简述

标签:arch   分享图片   mat   就是   script   weight   bubuko   mes   method   

原文地址:https://www.cnblogs.com/hzg8754/p/9641398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!