Guest User

Untitled

a guest
Dec 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3.  
  4. class Welcome extends CI_Controller {
  5.  
  6. public function __construct() {
  7. parent::__construct();
  8. }
  9.  
  10. public function index()
  11. {
  12. $this->load->view('welcome_message');
  13. }
  14.  
  15. function staticpage($namafile){
  16. $this->load->view('welcome_message',$namafile);
  17. }
  18. }
Add Comment
Please, Sign In to add comment