当前位置:网站首页>PHP student achievement management system, the database uses mysql, including source code and database SQL files, with the login management function of students and teachers
PHP student achievement management system, the database uses mysql, including source code and database SQL files, with the login management function of students and teachers
2022-07-04 09:32:00 【qq_ three billion three hundred and fifty-five million one hund】
php Student achievement management system , Database usage MySQL, Including source code and database SQL file , With the login management function of students and teachers










database SQL file
/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 50527 Source Host : localhost:3306 Source Schema : 000000 Target Server Type : MySQL Target Server Version : 50527 File Encoding : 65001 Date: 13/10/2019 23:22:41 */
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for files
-- ----------------------------
DROP TABLE IF EXISTS `files`;
CREATE TABLE `files` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' full name ',
`password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' The login password ',
`age` int(11) NULL DEFAULT NULL COMMENT ' Age ',
`sex` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Gender ',
`email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' mailbox ',
`phone` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Telephone ',
`hobbys` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' hobby ',
`address` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Address ',
`createtime` datetime NULL DEFAULT NULL COMMENT ' Creation time ',
`zzmm` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Political affiliation ',
`content` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Personal profile ',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 124100130 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' Student file information ' ROW_FORMAT = Compact;
-- ----------------------------
-- Records of files
-- ----------------------------
INSERT INTO `files` VALUES (124100123, ' Bruce Lee ', '123456', 18, ' Woman ', '[email protected]', '18314463777', ' Climbing the mountain ', ' Beijing China 123 Number ', now(), ' Young pioneers ', ' Hard work 22');
INSERT INTO `files` VALUES (124100124, ' Wang Xiaoer ', '123456', 19, ' male ', '[email protected]', '18314463777', ' swimming ', ' Beijing China 123 Number ', now(), ' Young pioneers ', ' Practical and capable ');
INSERT INTO `files` VALUES (124100125, ' Zhang Guoguo ', '123456', 20, ' Woman ', '[email protected]', '18314463777', ' play the piano ', ' Beijing China 123 Number ', now(), ' League members ', ' with a glib tongue ');
INSERT INTO `files` VALUES (124100128, ' A small plane ', '123456', 21, ' male ', '[email protected]', '18314463777', ' brag ', ' Beijing China 123 Number ', now(), ' League members ', ' By spectrum ');
INSERT INTO `files` VALUES (124100129, ' Paper Plane ', '123456', 22, ' male ', '[email protected]', '18314463777', ' To play basketball ', ' Beijing China 123 Number ', now(), ' party member ', ' Leadership ');
-- ----------------------------
-- Table structure for student
-- ----------------------------
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT ' achievement ID',
`coursename` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Course name ',
`sid` bigint(20) NULL DEFAULT NULL COMMENT ' Student number ',
`score` int(255) NULL DEFAULT NULL COMMENT ' fraction ',
`addtime` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT ' Add the time ',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = ' Student achievement ' ROW_FORMAT = Compact;
-- ----------------------------
-- Records of student
-- ----------------------------
INSERT INTO `student` VALUES (1, ' Chinese language and literature ', 124100123, 88, now());
INSERT INTO `student` VALUES (2, ' Chinese language and literature ', 124100123, 100, now());
INSERT INTO `student` VALUES (3, ' English ', 124100124, 100, now());
INSERT INTO `student` VALUES (4, ' Chinese language and literature ', 124100125, 99, now());
INSERT INTO `student` VALUES (5, ' history ', 124100128, 66, now());
INSERT INTO `student` VALUES (6, ' sports ', 124100129, 88, now());
INSERT INTO `student` VALUES (7, ' Geography ', 124100123, 66, now());
INSERT INTO `student` VALUES (8, ' chemical ', 124100123, 88,now());
INSERT INTO `student` VALUES (9, ' Physics ', 124100123, 78, now());
INSERT INTO `student` VALUES (10, ' Information ', 124100123, 77, now());
SET FOREIGN_KEY_CHECKS = 1;
php The document states
addfiles.php Student profile add page
showfiles.php Display the student profile list page
index.php Teacher login Homepage , Show all student information
login.php Teacher login page
loginCheck.php Teacher login verification page
filesAction.php Student files increased modify Delete logical processing page
editfiles.php Student profile editing page
addstudent.php Student grades add page
db.php Database connection profile
editStudent.php Student grade editing page
footer.php Web page copyright area file
studentAction.php Student grades add modify Delete logical processing page
studentindex.php Students log on to the home page ( Personal achievement query )
studentlogin.php Student login page
studentloginCheck.php Student login verification page
student.php Student grade list page
Database field description
files( Student file information )
Field name type The default value is Main foreign key Is it empty notes
id bigint(20) null Primary key NO ID
name varchar(255) null YES full name
password varchar(255) null YES The login password
age int(11) null YES Age
sex varchar(255) null YES Gender
email varchar(255) null YES mailbox
phone varchar(255) null YES Telephone
hobbys varchar(255) null YES hobby
address varchar(255) null YES Address
createtime datetime null YES Creation time
zzmm varchar(255) null YES Political affiliation
content varchar(255) null YES Personal profile
student( Student achievement )
Field name type The default value is Main foreign key Is it empty notes
id int(11) null Primary key NO achievement ID
coursename varchar(255) null YES Course name
sid bigint(20) null YES Student number
score int(255) null YES fraction
addtime varchar(50) null YES Add the time
边栏推荐
- 2022-2028 global protein confectionery industry research and trend analysis report
- Solution to null JSON after serialization in golang
- Dede plug-in (multi-function integration)
- 2022-2028 global gasket metal plate heat exchanger industry research and trend analysis report
- 【leetcode】540. A single element in an ordered array
- ArrayBuffer
- 【leetcode】29. Divide two numbers
- Dynamic analysis and development prospect prediction report of high purity manganese dioxide in the world and China Ⓡ 2022 ~ 2027
- Trim leading or trailing characters from strings- Trim leading or trailing characters from a string?
- Write a jison parser from scratch (1/10):jison, not JSON
猜你喜欢

Nurse level JDEC addition, deletion, modification and inspection exercise

Target detection -- intensive reading of yolov3 paper

2022-2028 global small batch batch batch furnace industry research and trend analysis report

After unplugging the network cable, does the original TCP connection still exist?

2022-2028 global gasket metal plate heat exchanger industry research and trend analysis report
](/img/dc/5c8077c10cdc7ad6e6f92dedfbe797.png)
C语言-入门-基础-语法-[变量,常亮,作用域](五)
![[untitled] forwarding least square method](/img/8b/4039715e42cb4dc3e1006e8094184a.png)
[untitled] forwarding least square method

Opencv environment construction (I)

2022-2028 global elastic strain sensor industry research and trend analysis report

The child container margin top acts on the parent container
随机推荐
Global and Chinese markets of thrombography hemostasis analyzer (TEG) 2022-2028: Research Report on technology, participants, trends, market size and share
《网络是怎么样连接的》读书笔记 - FTTH
Reload CUDA and cudnn (for tensorflow and pytorch) [personal sorting summary]
Launpad | basic knowledge
Luogu deep foundation part 1 Introduction to language Chapter 4 loop structure programming (2022.02.14)
2022-2028 global strain gauge pressure sensor industry research and trend analysis report
Explanation of closures in golang
Development trend and market demand analysis report of high purity tin chloride in the world and China Ⓔ 2022 ~ 2027
C语言-入门-基础-语法-数据类型(四)
Awk from entry to earth (8) array
Four common methods of copying object attributes (summarize the highest efficiency)
老掉牙的 synchronized 锁优化,一次给你讲清楚!
《网络是怎么样连接的》读书笔记 - 认识网络基础概念(一)
Target detection -- intensive reading of yolov3 paper
Awk from digging into the ground to getting started (10) awk built-in functions
Write a jison parser from scratch (5/10): a brief introduction to the working principle of jison parser syntax
"How to connect the network" reading notes - Web server request and response (4)
C语言-入门-基础-语法-[变量,常亮,作用域](五)
上周热点回顾(6.27-7.3)
Pueue data migration from '0.4.0' to '0.5.0' versions