控制层
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_resultphp页面中
}
view层:
<div id='result_div'>
<h3 style="align:center;color: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>
获得URL上的参数
比如:indexphp/controller/index/3
$this->uri->segment(3);就是url上从indexphp开始往后数,/划分,例子上就是得到的3
望采纳。
以上就是关于您好 在CI框架 在进行数据库updatae *** 作时 方法执行成功了 数据表中却没有任何变化 这可能是哪儿出错全部的内容,包括:您好 在CI框架 在进行数据库updatae *** 作时 方法执行成功了 数据表中却没有任何变化 这可能是哪儿出错、PHP用Spreadsheet_Excel_Reader读取excel表格,用的PHP框架为CI框架,出现个很奇怪的问题、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)