Passing common title to all view and models CodeIgniter

前端 未结 3 726
轻奢々
轻奢々 2021-01-26 09:09

I have this controller



        
3条回答
  •  温柔的废话
    2021-01-26 09:31

    Here si simple solution and elegant for transfering one variable to all views :)

    title = "Some site";
            $this->load->vars($data);
        }
    

提交回复
热议问题