ci多表查询,跳转,访问方式
Posted maoriaty
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ci多表查询,跳转,访问方式相关的知识,希望对你有一定的参考价值。
多表查询:
$data[‘upvideos‘] = $this->db->from(‘upload_video‘)->join(‘vcat‘, ‘vcat.catid = upload_video.catid‘)->order_by(‘createtime‘, ‘DESC‘)->get()->result_array();
跳转:
redirect(‘/uploadvideo/index‘, ‘refresh‘);
访问方式:
define(‘IS_POST‘, strtolower($_SERVER["REQUEST_METHOD"]) == ‘post‘); define(‘IS_GET‘, strtolower($_SERVER["REQUEST_METHOD"]) == ‘get‘);
以上是关于ci多表查询,跳转,访问方式的主要内容,如果未能解决你的问题,请参考以下文章