Kullanıcının kayıt tarihine bir yıl eklemek nasıl Codeigniter

0 Cevap php

Ben bir kullanıcı kayıt formu var, ve ben müşterilerine son kullanma tarihini oluşturmak için bir işlev eklemek gerekir. 1 yıl ya da 2 ya açılan seçimine bağlı.

Nasıl kullanıcı yaratma üzerine kayıt tarihine yıl değer katabilir?

İşte yeni bir kullanıcı için benim denetleyicisi

    function new_member()
{
    $data = array(
        'Last_Name' => $this->input->post('Last_Name'),
        'First_Name' => $this->input->post('First_Name'),
        'Salutation' => $this->input->post('Salutation'),
        'Address' => $this->input->post('Address'),
        'City' => $this->input->post('City'),
        'Province' => $this->input->post('Province'),
        'Postal' => $this->input->post('Postal'),
        'Email' => $this->input->post('Email'),
        'Dial_Up' => $this->input->post('Dial_Up'),
        'Phone_1' => $this->input->post('Phone_1'),
        'Phone_2' => $this->input->post('Phone_2'),
        'Language' => $this->input->post('Language'),
        'Membership_Cat' => $this->input->post('Membership_Cat'),
        'Special_Member_Cat' => $this->input->post('Special_Member_Cat'),
        'Membership_Status' => $this->input->post('Membership_Status'),
        'Date_DNR' => $this->input->post('Date_DNR'),
        'Gift_Membership' => $this->input->post('Gift_Membership'),
        'Gift_Giver' => $this->input->post('Gift_Giver'),
        'Membership_Length' => $this->input->post('Membership_Length'),
        'Dues_Paid' => $this->input->post('Dues_Paid'),
        'Donation' => $this->input->post('Donation'),
        'Payment_Method' => $this->input->post('Payment_Method'),
        'Date_Received' => $this->input->post('Date_Received'),
        'Date_Input' => $this->input->post('Date_Input'),
        'Membership_Date' => $this->input->post('Membership_Date'),
        'Renew_Letter_1' => $this->input->post('Renew_Letter_1'),
        'Renew_Letter_2' => $this->input->post('Renew_Letter_2'),
        'Renew_Letter_3' => $this->input->post('Renew_Letter_3'),
        'Date_Letter_Sent' => $this->input->post('Date_Letter_Sent'),
        'Vol_FA' => $this->input->post('Vol_FA'),
        'Vol_TEL' => $this->input->post('Vol_TEL'),
        'Vol_CD' => $this->input->post('Vol_CD'),
        'Vol_SCBA' => $this->input->post('Vol_SCBA'),
        'Vol_MAIL' => $this->input->post('Vol_MAIL'),
        'Vol_SML' => $this->input->post('Vol_SML'),
        'Vol_BODCOM' => $this->input->post('Vol_BODCOM'),
        'Vol_OTHER' => $this->input->post('Vol_OTHER'),
        'Member_Since' => $this->input->post('Member_Since'),
        'Notes' => $this->input->post('Notes'),
        );

    $this->membership_model->add_record($data);
    $this->load->view('index_view');
}

Bu benim modeli

    function add_record($data)
{
    $this->db->insert('Membership', $data);
    return;
}

herhangi bir yardım takdir!

teşekkürler

0 Cevap