function index($offset = 0, $limit = 100) { $o = new Emailsignup(); $o->order_by('created', 'desc'); $o->get_paged($offset, $limit, TRUE); setPagination($this->admin . 'emails_signups/index/', $o->paged->total_rows, $limit, 4); $dis['o'] = $o; $dis['base_url'] = base_url(); $dis['view'] = 'emails_signups/list_all'; $dis['menu_active'] = 'Email đăng ký'; $dis['title'] = "Danh sách email đăng ký"; $dis['title_table'] = "Trang hiện tại:" . $o->paged->current_page . '/' . $o->paged->total_pages; $this->viewadmin($dis); }
function emailSignup() { $email = $this->input->post('email'); if ($email != '') { $o = new Emailsignup(); $o->email = $email; if ($o->save()) { echo "Bạn đã đăng ký nhận bản tin STND thành công"; } else { echo "Có lỗi trong quá trình xử lý. Vui lòng thử lại"; } } die; }