我正在从View向控制器发送编码后的cat_id
,但是在控制器端有时cat_id
未被解码,有时被解码。
请帮助我,下面给出了我的代码,需要建议如何发送
已将id
从View加密到Controller。
查看:
<?php $id=$this->encrypt->encode($showAllCat->cat_id); ?>
<a href="<?php echo base_url('Category/editCat'); ?>?cat_id=<?php echo $id ?>"
<button type="edit" class="btn btn-primary btn-sm">Edit</button> </a>
控制器:
public function editCat()
{
$edit=$this->input->get('cat_id'); //print_r($edit); exit;
$edit= $this->encrypt->decode($edit);
print_r($edit); exit;
$editcate=$this->Category_model->editCat($editCat);
print_r($edit); exit;
}