php中一个html页面实现增删改查

在tp5中也就是 一个hhtml页面提交到php页面进行处理 进行增删改查
2024-12-29 10:00:22
推荐回答(1个)
回答1:

增加:insert into 表名(字段1,字段2,...) values('值1','值2',....) where 条件;
删除:delete 表名
修改:update 表名 set 字段名='值' where 条件;
查询:select 字段名 from 表名 where 条件;