当前位置:网站首页>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
边栏推荐
- UML 时序图[通俗易懂]
- 2022-2028 global tensile strain sensor industry research and trend analysis report
- Langage C - démarrer - base - syntaxe - [opérateur, conversion de type] (vi)
- 2022-2028 global industrial gasket plate heat exchanger industry research and trend analysis report
- Deadlock in channel
- What is uid? What is auth? What is a verifier?
- Solve the problem of "Chinese garbled MySQL fields"
- How should PMP learning ideas be realized?
- How to write unit test cases
- 2022-2028 global gasket plate heat exchanger industry research and trend analysis report
猜你喜欢

【LeetCode 42】501. Mode in binary search tree

How does idea withdraw code from remote push

Opencv environment construction (I)

You can see the employment prospects of PMP project management
](/img/3f/4d8f4c77d9fde5dd3f53ef890ecfa8.png)
C語言-入門-基礎-語法-[運算符,類型轉換](六)

How to ensure the uniqueness of ID in distributed environment

HMS core helps baby bus show high-quality children's digital content to global developers

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

Sword finger offer 30 contains the stack of Min function

2022-2028 global special starch industry research and trend analysis report
随机推荐
At the age of 30, I changed to Hongmeng with a high salary because I did these three things
Logstack configuration details -- elasticstack (elk) work notes 020
Flutter 小技巧之 ListView 和 PageView 的各種花式嵌套
Write a jison parser from scratch (2/10): learn the correct posture of the parser generator parser generator
Summary of the most comprehensive CTF web question ideas (updating)
Global and Chinese PCB function test scale analysis and development prospect planning report Ⓑ 2022 ~ 2027
Awk from getting started to digging in (11) detailed explanation of awk getline function
Write a jison parser from scratch (5/10): a brief introduction to the working principle of jison parser syntax
The old-fashioned synchronized lock optimization will make it clear to you at once!
Awk from entry to earth (15) awk executes external commands
Luogu deep foundation part 1 Introduction to language Chapter 4 loop structure programming (2022.02.14)
Investment analysis and prospect prediction report of global and Chinese high purity tin oxide Market Ⓞ 2022 ~ 2027
Analysis report on the development status and investment planning of China's modular power supply industry Ⓠ 2022 ~ 2028
Talk about single case mode
Tkinter Huarong Road 4x4 tutorial II
Awk from entry to earth (18) GAW K line manual
上周热点回顾(6.27-7.3)
【leetcode】29. Divide two numbers
《网络是怎么样连接的》读书笔记 - 认识网络基础概念(一)
C language - Introduction - Foundation - syntax - [identifier, keyword, semicolon, space, comment, input and output] (III)