douzhan8652 2014-07-16 02:32
浏览 40
已采纳

在表单提交codeigniter上更新数据库

I am having trouble updating my value in my database on form submit. I use codeigniter 2.20

I am getting a error Fatal error: Call to undefined method Model_setting::updateTheme() in E:\Xampp\htdocs\codeigniter-theme\admin\controllers\setting\setting.php on line 8

What I am trying to archive is on once have selected theme in form it will update the setting table value is where it gets posted to. It's not changing on form submit either. I have autoloaded form_validation lib and form helper.

Model

<?php

class Model_setting extends CI_Model {

    public function updateTheme() {
        $this->db->select('*');
        $this->db->where('group', 'config');
        $this->db->where('key', 'config_template');
        $this->db->where('value', $this->input->post('config_template')); // Need to update theme row 
        $query = $this->db->update('setting');
    }
}

view

<form method="post" action="<?php echo $action;?>" role="form" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-template"><?php echo $entry_template; ?></label>
<div class="col-sm-10">
<select name="config_template" id="input-template" class="form-control">
<?php foreach ($templates as $template) { ?>
<?php if ($template == $config_template) { ?>
<option value="<?php echo $template; ?>" selected="selected"><?php echo $template; ?></option>
<?php } else { ?>
<option value="<?php echo $template; ?>"><?php echo $template; ?></option>
<?php } ?>
<?php } ?>
</select>
<br />
<img src="" alt="" id="template" class="img-thumbnail" />
</div>
</div>
<button type="submit" class="btn btn-md btn-primary">Save</button>
</form>

Controller

public function index() {
        $this->load->model('setting/model_setting');

        $this->model_setting->updateTheme();

        if(null !==($this->input->post('config_template'))) {
            $data['config_template'] = $this->input->post('config_template');
        } else {
            $data['config_template'] = $this->theme->get('value'); // Auto loaded Library Theme
        }

        $data['templates'] = array();

        $directories = glob(DIR_CATALOG . 'views/theme/*', GLOB_ONLYDIR);

        foreach ($directories as $directory) {
            $data['templates'][] = basename($directory);
        }

        $this->form_validation->set_rules('config_template', '', 'callback_validate');

        if($this->form_validation->run()) {

            redirect('setting/store');

        } else {

            $this->lang->load('setting/setting', 'english');

            $data['breadcrumbs'] = array();

            $data['breadcrumbs'][] = array(
                'text' => $this->lang->line('text_home'),
                'href' => site_url('common/dashboard')
            );

            $data['breadcrumbs'][] = array(
                'text' => $this->lang->line('heading_title'),
                'href' => site_url('setting/setting')
            );

            $data['action'] = site_url('setting/setting');

            $data['title'] = "Settings";

            $data['entry_template'] = $this->lang->line('entry_template');

            $data['header'] = $this->header($data);
            $data['footer'] = $this->footer($data);

            $this->load->view('setting/setting', $data);
        }

    }

展开全部

  • 写回答

2条回答 默认 最新

  • donglin9068 2014-07-16 03:13
    关注

    You should read some basic CI first:

    function index() {
        $this->load->model('setting/model_setting');    //load model
        if( $this->input->post(null) ){ //detect if form is submitted
            if(null !==($this->input->post('config_template'))) {
                $data['config_template'] = $this->input->post('config_template');
            } else {
                $data['config_template'] = $this->theme->get('value'); // Auto loaded Library Theme
            }
            if($this->form_validation->run()) {
                $this->model_setting->updateTheme();
            }
            redirect('setting/store');
        }else{                          // load view only
            $data['templates'] = array();
            $directories = glob(DIR_CATALOG . 'views/theme/*', GLOB_ONLYDIR);
            foreach ($directories as $directory) {
                $data['templates'][] = basename($directory);
            }
    
            $this->form_validation->set_rules('config_template', '', 'callback_validate');
            $this->lang->load('setting/setting', 'english');
    
            $data['breadcrumbs'] = array();
            $data['breadcrumbs'][] = array(
                'text' => $this->lang->line('text_home'),
                'href' => site_url('common/dashboard')
            );
            $data['breadcrumbs'][] = array(
                'text' => $this->lang->line('heading_title'),
                'href' => site_url('setting/setting')
            );
    
            $data['action'] = site_url('setting/setting');
            $data['title'] = "Settings";
            $data['entry_template'] = $this->lang->line('entry_template');
            $data['header'] = $this->header($data);
            $data['footer'] = $this->footer($data);
            $this->load->view('setting/setting', $data);
        }
    }
    

    You should first check if there is any post request, if there is update and redirect else show the form.

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部