一个使用 PHP 实现,功能简单的学生信息管理系统

Published at:
Updated at:
Tags: PHP

一个使用 PHP 实现,功能简单的学生管理系统,刚好够应付课堂作业用。

背景图片 GitHub 仓库

项目截图预览

实现功能

  • 登录
  • 注册
  • 修改用户名
  • 修改密码
  • 使用 cookie 保持登录状态
  • 对学生的增删查改

技术栈

  • PHP
  • Bootstrap v4
  • MariaDB(与 MySQL 兼容)

测试环境

  • WampServer Version 3.2.0 64bit
  • PHP 5.6.40 for CLI (Command-Line Interface)
  • MariaDB 10.4.10

数据库创建语句

create database student_management;
use student_management;

CREATE TABLE user (
   id int auto_increment primary key,
   uname varchar(20) not null,
   pwd varchar(20) not null
)default charset=utf8;

create table student (
    id int primary key auto_increment,
    sid int not null,
    name varchar(15) not null,
    age int not null,
    sex enum('', '', '其他') not null,
    uid int not null,
    FOREIGN KEY(uid) REFERENCES user(id)
)default charset=utf8;