# PHP博客 **Repository Path**: liumingxunnn/php-blog ## Basic Information - **Project Name**: PHP博客 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-18 - **Last Updated**: 2021-06-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PHP博客 #### 安装教程 1. ```sql CREATE DATABASE `db_blog` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci */ ``` 2. ```sql create table tb_blog ( id_blog int auto_increment primary key, title varchar(20) charset utf8 not null, content text not null, publish datetime not null, author varchar(14) charset utf8 not null, del_flag tinyint(1) default 0 null ); ```