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 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵