Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
load->view('welcome_message');
}
public function index()
{
$this->load->view('pages/index');
$this->load->view('includes/footer');
}
public function project()
{
$this->load->view('includes/header2');
$this->load->view('pages/project-single');
$this->load->view('includes/footer');
}
public function privacy()
{
//$this->load->view('includes/header2');
$this->load->view('pages/privacy');
//$this->load->view('includes/footer');
}
public function plan()
{
$this->load->view('includes/header2');
$this->load->view('pages/plan');
$this->load->view('includes/footer');
}
public function join()
{
$this->load->view('includes/header2');
$this->load->view('pages/join');
$this->load->view('includes/footer');
}
public function send_mail() {
$name_email = $this->input->post('name');;
$email = $this->input->post('email');;
$from_email = 'support@afel.co.tz';
$company_email = $this->input->post('company');;
$message_email = $this->input->post('message');;
$to_email = 'service@afel.co.tz';
//Load email library
$this->load->library('email');
$this->email->from($from_email, $name_email);
$this->email->to($to_email);
$this->email->subject($company_email.'-'.$name_email.'('.$email.')');
$this->email->message($message_email);
//Send mail
print_r($_POST);
if($this->email->send()){
//$this->session->set_flashdata("email_sent","Congragulation Email Send Successfully.");
redirect('welcome/plan');
}
}
public function send_2() {
$name_email = $this->input->post('name');;
$email = $this->input->post('email');;
$from_email = 'support@afel.co.tz';
$company_email = '';
$message_email = $this->input->post('message');;
$to_email = 'service@afel.co.tz';
//Load email library
$this->load->library('email');
$this->email->from($from_email, $name_email);
$this->email->to($to_email);
$this->email->subject($name_email.' - '.$email);
$this->email->message($message_email);
//Send mail
//print_r($_POST);
$this->email->send();
redirect($_SERVER['HTTP_REFERER']."#contact");
}
public function logout() {
$this->session->sess_destroy();
redirect('login');
}
}