สอบถามปัญหา แจ้งข้อผิดพลาด เวลากดปุ่ม ส่งข้อความ ค่ะ
แปะเป็นโค้ดไม่ได้เหรอครับ?
Date :
2020-04-17 14:28:40
By :
mr.v
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Contact extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->model('db_contact');
$this->load->library('form_validation');
}
public function index() {
$lang = $this->session->userdata('language');
$data = array(
'add' => $this->db_contact->address_get($lang['lng_id']),
'con_social' => $this->db_contact->social_list()
);
$this->templates->web('body', 'front/index', $data);
}
function save_contact() {
$this->form_validation->set_rules('email', 'email', 'trim|required', 'กรุณาตรวจสอบ Email address ของท่านอีกครั้งค่ะ ');
if ($this->form_validation->run($this) == FALSE) {
$this->index();
} else {
save_contact();
redirect(base_url() . "contact/success");
}
/*
$this->load->library('parser');
$this->load->library('email');
$email_body = $this->parser->parse('front/mail-data', $_POST, TRUE);
$email_cc = $this->input->post('email');
$this->email->clear();
$this->email->to('[email protected] ');
$this->email->cc($email_cc);
$this->email->from('[email protected] ', 'Conatct Data From ' . $this->input->post('name'));
$this->email->subject('Contact Data From : ' . $this->input->post('name'));
$this->email->set_mailtype("html");
$this->email->message($email_body);
$this->email->send();
*
*/
}
function success() {
$data = array(
);
$this->templates->web('body', 'front/success', $data);
}
}
Date :
2020-04-17 15:28:40
By :
่jabuilding
55555 แล้วมันแจ้งว่ายังไงล่ะครับ เอ้อเหนื่อย
สงสัยเป็นข้อสอบสำหรับคนช่วยล่ะมั้งเนี่ย
เอ้าเอาโค๊ดไปดูว่ามันผิดยังไง จบข่าว
ใครขยันก็ช่วยเขาหน่อยนะครับ ผมขอผ่านล่ะ
Date :
2020-04-17 16:25:20
By :
Chaidhanan
ครอบภาษาให้มันไฮไลท์ ทำไม่เป็นอีก
ปัญหาก็ไม่อธิบายคำถาม
แจ้งข้อผิดพลาด จะให้แจ้งอะไรหรือว่ามันแจ้งอะไรหรือจะให้มันเป็นยังไง?
Date :
2020-04-17 16:46:23
By :
mr.v
Load balance : Server 05