function create()
{
$data['headline'] =" ";
$this->load->module('site_security');
$this->site_security->_make_sure_is_admin();
$update_id = $this->uri->segment(3);
if(!is_numeric($update_id))
{
$data['headline'] = "Add New Product";
//$data['headline'] = print_r($update_id)."if";
}
else
{
$data['headine'] = "Update Product Details";
//$data['headline'] = print_r($update_id)."else";
}
$data['view_module'] = "store_products"; //passing module name
$data['view_file'] = "create"; //passing method name
$this->load->module('templates'); // loads the template module
$this->templates->admin($data); //calls the template controller method admin which loads the admin view
}
我正在通过标题文字来更改视图中的标题,具体取决于网址中第三个第3段的内容。第一个if语句完美地设置了标题,但它不会进入else语句并且给我错误,因为$ headline在视图中未定义。奇怪的是,如果我使用注释的print_r语句一切正常,它将在视图中显示。
我认为它必须是$ data [' headine'] ="更新产品详情&#34 ;;在其他地方,但我不知道为什么。
答案 0 :(得分:0)
在你的其他声明中,
var myInstance = new myLibrary.jTicker(10,30);
你这里有一个错字。将 else
{
$data['headine'] = "Update Product Details";
}
更改为headine
。