From 39c298dce5ce9e1f85a37c76ac8881e2de4a42a6 Mon Sep 17 00:00:00 2001 From: Olusesan Amaeye Date: Sat, 15 Jun 2019 09:08:40 -0400 Subject: [PATCH] First build --- wwwjuba/application/controllers/Startwww.php | 25 ++++++ wwwjuba/application/views/bkohome/home.php | 89 ++++++++++++++++++++ 2 files changed, 114 insertions(+) create mode 100644 wwwjuba/application/controllers/Startwww.php create mode 100644 wwwjuba/application/views/bkohome/home.php diff --git a/wwwjuba/application/controllers/Startwww.php b/wwwjuba/application/controllers/Startwww.php new file mode 100644 index 0000000..a89485b --- /dev/null +++ b/wwwjuba/application/controllers/Startwww.php @@ -0,0 +1,25 @@ + + * @see https://codeigniter.com/user_guide/general/urls.html + */ + public function index() + { + $this->load->view('bkohome/home'); + } +} diff --git a/wwwjuba/application/views/bkohome/home.php b/wwwjuba/application/views/bkohome/home.php new file mode 100644 index 0000000..f511563 --- /dev/null +++ b/wwwjuba/application/views/bkohome/home.php @@ -0,0 +1,89 @@ + + + + + Welcome to CodeIgniter + + + + + +
+

Welcome to CodeIgniter!

+ +
+

The page you are looking at is being generated dynamically by CodeIgniter.

+ +

If you would like to edit this page you'll find it located at:

+ application/views/welcome_message.php + +

The corresponding controller for this page is found at:

+ application/controllers/Welcome.php + +

If you are exploring CodeIgniter for the very first time, you should start by reading the User Guide.

+
+ + +
+ + + \ No newline at end of file