dptj13337 2015-09-22 09:13
浏览 42
已采纳

遇到PHP错误严重性:通知消息:未定义的索引:问题

<?php
    if ( ! defined('BASEPATH')) exit('No direct script access allowed');
    class checklist extends CI_Controller 
    {
        function __construct()
        {
            parent::__construct();
            $this->load->helper('url');
            $this->load->helper('form');
            $this->load->model('checklist_model');
        }
        public function index()
        {
            $data['check_list'] = $this->checklist_model->get_all_details();
            $this->load->view('show_checklist', $data);
        }
        public function form_dropdown() 
        {
            $this->load->view('insert_checklist');
        }
        public function data_submitted()
        {

            $data = array('dropdown_single' => $this->input->post('Technology'));
            $this->load->model('checklist_model');
            $this->checklist_model->insert_in_db($data);
            $this->load->model("checklist_model");
            $result = $this->checklist_model->read_from_db($data);
            $data['result'] = $result[0];
            $this->load->view('insert_checklist', $data);
        }   
        public function add_form()
        {
            $this->load->view('insert_checklist');
        }
        public function edit()
        {
            $id = $this->uri->segment(3);
             $data['details'] = $this->checklist_model->getById($id);
            $this->load->view('edit', $data);
        }
        public function delete($id)
        {
            $this->checklist_model->delete_a_detail($id);
            $this->index();
        }
        public function insert_new_details()
        {
            $udata['technology_name'] = $this->input->post('technology_name');
            $udata['questions'] = $this->input->post('questions');
            $udata['status'] = $this->input->post('status');
            $udata['comments'] = $this->input->post('comments');
            $res = $this->checklist_model->insert_details_to_db($udata);
            if($res)
            {
                header('location:'.base_url()."/index.php/checklist/".$this->index());
            }
        }
        public function update()
        {
            $mdata['technology_name']=$_POST['technology_name'];
            $mdata['questions']=$_POST['questions'];
            $mdata['status']=$_POST['status'];
            $mdata['comments']=$_POST['comments'];
            $res=$this->checklist_model->update_info($mdata, $_POST['id']);
            if($res)
            {
                header('location:'.base_url()."/index.php/checklist/".$this->index());
            }
        }
    }
?>
  • 写回答

1条回答 默认 最新

  • drl47263 2015-09-22 10:10
    关注

    it means you call for an array variable's index 'question', and that index does not exist in that array. Maybe in function update(), $_POST['question']. Not sure. You should provide the full error msg, like file and line. Also: the view if that's the case. And make this sound more like a question.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器