# mba_php **Repository Path**: itknight/mba_php ## Basic Information - **Project Name**: mba_php - **Description**: MBA专题 PHP版本 - **Primary Language**: PHP - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-08-17 - **Last Updated**: 2024-06-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ThinkPHP 5.0 =============== [![Total Downloads](https://poser.pugx.org/topthink/think/downloads)](https://packagist.org/packages/topthink/think) [![Latest Stable Version](https://poser.pugx.org/topthink/think/v/stable)](https://packagist.org/packages/topthink/think) [![Latest Unstable Version](https://poser.pugx.org/topthink/think/v/unstable)](https://packagist.org/packages/topthink/think) [![License](https://poser.pugx.org/topthink/think/license)](https://packagist.org/packages/topthink/think) #注意事项 * 部署应用的时候,要注意修改 config.json 配置 图片地址 # 最新建表 ```sql drop table if exists cl_books; /*==============================================================*/ /* Table: cl_books */ /*==============================================================*/ create table cl_books ( b_id int not null auto_increment, b_name varchar(100) not null default '', b_isbn varchar(20) not null default '', b_author varchar(20) not null default '', b_editor varchar(50) not null default '', b_seq smallint not null default 1, b_ctime bigint not null default 0, b_keywords varchar(100) not null default '', b_left int not null default 0, b_discount int not null default 100, b_prize decimal(5,2) not null default 0, b_online tinyint not null default 1, primary key (b_id) ); ```