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 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能