# notpad_web **Repository Path**: tpcwre/notpad_web ## Basic Information - **Project Name**: notpad_web - **Description**: 网页版记事本 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-09-08 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 创建库 create database notpad default charset=utf8; ### 用户表 create table notpad_user( id int primary key auto_increment, user varchar(8) comment '账号', pwd varchar(50) comment '密码' )engine=myisam default charset=utf8; ### 信息表 create table notpad_info( id int primary key auto_increment, user varchar(8) comment '关联的账号', title varchar(30) comment '记事本标题', info text(65530) comment '内容', index a(user,id) )engine=myisam default charset=utf8;