我已经在我的视图页面中写了这个,
<a onclick="window.open('print_mine/id=<?php echo $value['id'];?>','800','400')">View</a>
它给了我您提交的 URI 包含不允许的字符。
我需要其他页面中的 id
我已经在 route.php 以及控制器中编写了代码
我已经在我的视图页面中写了这个,
<a onclick="window.open('print_mine/id=<?php echo $value['id'];?>','800','400')">View</a>
它给了我您提交的 URI 包含不允许的字符。
我需要其他页面中的 id
我已经在 route.php 以及控制器中编写了代码
查看您的 config/config.php 并搜索“不允许”或“非法”。那里有一些 CI URI 中不允许使用的字符。也许你想window.open('print_mine/<?=$value['id']?>','800','400')
?
您的看法:
<a onclick="window.open('print_mine/<?php echo $value['id'];?>','800','400')">View</a>
在控制器中:
function print_mine(){
$id = $this->uri->segment(3); #will fetch the third segment
}