PHP页面调用另外一个页面的表格值的修改
答案:2 悬赏:50 手机版
解决时间 2021-03-13 23:37
- 提问者网友:趣果有间
- 2021-03-13 15:53
你好,你刚才在我的问答中回答说不喜欢到别人网站,要么我把所有代码一个一个发你好吗
最佳答案
- 五星知识达人网友:轻雾山林
- 2021-03-13 17:26
我告诉你原理吧 比如在1.php里是修改的页面 2.php是要调用1.php里修改的参数
那么只要把1.php表单$_SESSION['user']= $_POST['user'];保存在session就可以在各个页面传值了
那么在2.php 直接 输出$_SESSION['user']就是 1.php里的user参数值了;
还有个方法
1.php修改的入库 然后2.php用读取数据库的数据
那么只要把1.php表单$_SESSION['user']= $_POST['user'];保存在session就可以在各个页面传值了
那么在2.php 直接 输出$_SESSION['user']就是 1.php里的user参数值了;
还有个方法
1.php修改的入库 然后2.php用读取数据库的数据
全部回答
- 1楼网友:往事埋风中
- 2021-03-13 19:04
formlayout formlayout = new formlayout();
group.setlayout(formlayout);//设置布局方式
table table = new table(group, swt.border | swt.full_selection
| swt.virtual);
table.setfont(uistyle.getfont());
table.setheadervisible(true);
table.setlinesvisible(true);
formdata tabledata = new formdata();
tabledata.left = new formattachment(0);
tabledata.top = new formattachment(15);
tabledata.right = new formattachment(100);
table.setlayoutdata(tabledata);//定表格位置
//表头
tablecolumn tablecolumn_serialnum = new tablecolumn(table,
swt.center);
tablecolumn_serialnum.setwidth(50);
tablecolumn_serialnum.settext("关键字");
tablecolumn tablecolumn_id = new tablecolumn(table, swt.center);
tablecolumn_id.setwidth(100);
tablecolumn_id.settext("值");
//值
map map = new hashmap();
iterator it = map.ketset();
for (string key;it.hasnext();) {
key = it.next();
responselogconfig = (responseoperationloggeneratorconfig) logs
.get(i);
tableitem item = new tableitem(table, swt.none);
item.settext(new string[] { key,
map.get(key) });
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯