create table DiaoYanTiMu
( Ids int(10) auto_increment not null primary key(),//把所需要的都写上中间不需要符号隔开,设自增长列类型必须是int,主键的话必须不能为空not null,
Title varchar(50) not null
);//这里的;一定不要忘记,要不然报错还找不出来,
insert into DiaoYanTiMu values(null,"35岁的发展方向");//因为设了自增长列,所以第一个列名Ids写为null,
create table DiaoYanXuanXiang
( Ids int(10) not null auto_increment primary key, Options varchar(50) not null, Numbers int(10) not null, TiMuDiaoYan int(10) not null );insert into DiaoYanXuanXiang values(null,"aaa",0,001);insert into DiaoYanXuanXiang values(null,"bbb",0,001);insert into DiaoYanXuanXiang values(null,"ccc",0,001);insert into DiaoYanXuanXiang values(null,"ddd",0,001);insert into DiaoYanXuanXiang values(null,"eee",0,001);
接下来自己做的过程中卡壳了,不知道怎么要选项前面的复选框出现,没有想到可以遍历,而且html写在php中总是各种报错,以为是不能写多以就不知道怎么做了,后来反应过来是""的问题,因为在php中输出echo"";已经有了"",所以里面的内容要用'',所以被坑的不轻是真的没有反应过来问题在引号上……粗心真的使不得,半个'有时候找半天发现是自己手误少了,可是出来的结果直接变形
无标题文档
提交之后,转换到另一个jieguo.php页面,处理提交需要处理的内容
Query($sql,1);//这里需要注意,type默认为0发表查询,这里update是更改不是查询所以type的值需要改变}header("location:toupiao.php");//处理结束跳转回toupiao.php页面