The installation and operation of PHP's fastadmin framework automatically generates background operations

The installation and operation of PHP's fastadmin framework automatically generates background operations

1. Download, go to fastadmin official website to download

 2. Unzip and put it in the server path, configure phpstudy

 3. Install, directly access the domain name xx.com, and configure the database

 

 4. Install plug-ins and background cases

 5. Automatically generate background additions, deletions, modifications and checks
1. Turn on debug mode

2. Create a data table

CREATE TABLE `fa_note` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ToUserName` varchar(50) DEFAULT NULL COMMENT 'WeChat user ID',
  `title` varchar(20) DEFAULT NULL COMMENT 'Title',
  `Content` text COMMENT 'content',
  `CreateTime` varchar(30) DEFAULT NULL COMMENT 'add time',
  `UpdateTime` varchar(30) DEFAULT NULL COMMENT 'modification time',
  `MsgType` varchar(30) DEFAULT NULL COMMENT 'text type' ,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='note list';
 

 3. Command click to add

 

 4. Generate menu

Guess you like

Origin blog.csdn.net/weixin_39934453/article/details/131995311