您好 在CI框架 在进行数据库updatae *** 作时 方法执行成功了 数据表中却没有任何变化 这可能是哪儿出错

您好 在CI框架 在进行数据库updatae  *** 作时 方法执行成功了 数据表中却没有任何变化 这可能是哪儿出错,第1张

控制层

function test_func(){

//获取model页面需要的两个参数

$competition_id = $_GET["competition_id"]

$report_class= $_GET["report_class"]

$this->load->model("Action")//引入model

$data["head"] = $this->Action->get_report_item($competition_id, $report_class)//引用model的函数

$this->load->view("test_result",$data) //将结果显示在test_result.php页面中

}

view层:

<div id='result_div'>

<h3 style="align:centercolor:blue">添加结果显示</h3>

<?php if ($head){?> //此处选择了循环输出从控制层传输的结果

<table align="center"border="1" cellpadding="1" cellspacing="1">

<tr align="center">

<td>字段名称(含义)</td> //该td中显示的是你从数据库、即model层中获取到的数据的含义,想显示多少,显示哪个,在这里确认

</tr>

<?php foreach ($head as $item){ ?>

<tr align="center">

<td><?php echo $item->test?></td>

</tr>

</table>

<?php }else {

echo “123”

}?>

</div>

没看明白你想更新什么,查最少次数方法很多,比如说(你的StuName不清楚是什么,假定就是考号,另外这个表中应该有一个自增长的主键吧,假定是id,考试次数假定是Kaoshicishu,字段和值你自己补全)

update tb_Stuinfo set 字段名=值 where StuName=@UserName and id=(select top 1 id from tb_stuinfo where StuName=@UserName order by Kaoshicishu)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9575073.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存