first commit
This commit is contained in:
Executable
+41
@@ -0,0 +1,41 @@
|
||||
<?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 projects as each projects deserves its indepth knowledge to achieve desiration and functionality.Here,we are incessant with results.We provide sky-scraping analysis on projects from transparent scripts to perplexing running on state-of art team";
|
||||
|
||||
|
||||
|
||||
$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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user