我的项目中有两个控制器。第二个控制器没有以正确的方式显示。如果我在浏览器行中打开它 - 没关系,但如果我通过链接传递它,查看它就不行了。第二个控制器类似于第一个。
控制器
<?php
if ( ! defined('BASEPATH')) exit ('No direct script access allowed');
class Article extends CI_Controller
{
public function __construct()
{
parent::__construct();
}
public function index()
{
ini_set('display_errors',1);
error_reporting(E_ALL);
$this->load->view('header_view');
$this->load->view('menu_view');
$this->load->view('categories_view');
$this->load->model('mat_model');
$data = array();
$data['news'] = $this->mat_model->get_latest();
$data['latest'] = $this->mat_model->get_latest();
$this->load->view('useful_sites_view',$data);
$this->load->view('article_view',$data);
$this->load->view('footer_view');
}
}
?>
我有链接的视图:
<?php foreach ($news as $one):?>
<div id="right">
<div id="breadcrumb"><a href="">Home</a> » <a href="">Somewhere</a></div>
<h1><?=$one['title']?></h1>
<p>
<div id="small_img"><?=$one['small_img']?></div>
<?=$one['description']?>
</p>
<div id=""> <a href="<?=base_url()."article/index/".$one['material_id'];?>" class="postinfo2">Читать далее...</a></div>
<span class="postinfo"> Posted by <a href=""><?=$one['author']?></a> on
<?=$one['date']?></span>
<HR ALIGN="center" WIDTH="70%" SIZE="1px" COLOR="black">
</div>
<?php endforeach; ?>
我在浏览网站上的图片方面没有太多声誉,但我非常需要它,为在浏览器中使用其他资源而道歉:
通过链接:
http://s020.radikal.ru/i710/1301/fd/76f313259454.jpg
使用浏览器行:
http://s020.radikal.ru/i713/1301/4e/a863cd18184d.jpg
谢谢。