Files
Olu Ameye cdb426b21a Updated
2020-07-25 18:52:55 +00:00

42 lines
1.5 KiB
PHP
Executable File

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Welcome extends CI_Controller {
/**
* Index Page for this controller.
*
* Maps to the following URL
* http://example.com/index.php/welcome
* - or -
* http://example.com/index.php/welcome/index
* - or -
* Since this controller is set as the default controller in
* config/routes.php, it's displayed at http://example.com/
*
* So any other public methods not prefixed with an underscore will
* map to /index.php/welcome/<method_name>
* @see https://codeigniter.com/user_guide/general/urls.html
*/
public function index()
{
$data = array();
$data["title_1"] = "Research";
$data["description_1"] ="We have a unique approach of creativity to each project as each project requires in-depth knowledge to achieve the business goals as the business evolves. Here, we are particular about results. We are continuously analyzing solutions we provided to ensure we align with best practice in the industries alt all time.";
$data["title_2"] = "Development";
$data["description_2"] ="We are the framework of your ever exquisite success platforms.We strategically pursuit your Purpose for you to continually foster prestigious relationships with your intent.";
$data["title_3"] = "Management";
$data["description_3"] ="Our diversity is our fortress.We provide run-of-the mill maintenance services as we all know there is no good run without garden-variety nurture.";
$this->load->view('fluxtra_home',$data);
}
}