Are you a regular stikked user? Signup so you can keep track of your pastes!

CI Template Library - 3

By Baby Dormouse, 1 Year ago, written in PHP.
URL http://stikked.com/view/59246753
  1. <?php
  2.  
  3. class Welcome extends Controller {
  4.  
  5.         function Welcome()
  6.         {
  7.                 parent::Controller();  
  8.         }
  9.        
  10.         function index()
  11.         {
  12.                 $this->load->library("basetemplate");
  13.                 $this->basetemplate->load(array(
  14.                                 'viewfile',
  15.                                 'viewfile',
  16.                                 array('viewfile',array('param1' => 1,'param2' => 2)),
  17.                         ));
  18.                 //$this->load->view('welcome_message');
  19.         }
  20. }
  21.  
  22. /* End of file welcome.php */
  23. /* Location: ./system/application/controllers/welcome.php */

Reply to "CI Template Library - 3 "

Here you can reply to the paste above

Create a snipurl

Make Private

Feeling clever? Set some advanced options.