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

在tp5中也就是 一个hhtml页面提交到php页面进行处理 进行增删改查

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

温馨提示:答案为网友推荐,仅供参考