php的ci是一个mvc模式的框架,本文是通过php+ci对mysql数据库进行增删改查。

0. 首先在mysql数据库方创建数据库和数据表

1 create database test;
2 use test;
3 create table user(
4     id int(10) not null auto_increment,
5     name varchar(50) not null,
6     age int(10) not null,
7     primary key (id)
8 );
View Code

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-25
  • 2022-12-23
  • 2021-11-05
  • 2021-07-10
  • 2021-07-23
猜你喜欢
  • 2021-10-16
  • 2021-09-28
  • 2022-01-05
  • 2022-12-23
  • 2021-05-10
  • 2021-09-01
  • 2021-12-13
相关资源
相似解决方案