【问题标题】:A PHP Error was encountered Severity: Notice Message: Undefined index: questions遇到 PHP 错误 严重性:通知消息:未定义索引:问题
【发布时间】:2015-09-22 09:13:11
【问题描述】:
<?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());
            }
        }
    }
?>

【问题讨论】:

  • 您只是希望我们为您完成这项工作吗?
  • 如果你需要答案,至少解释一下问题
  • 在你的代码中有 10+ 行有questions。那你指的是哪里??

标签: php codeigniter


【解决方案1】:

这意味着您调用了数组变量的索引“问题”,并且该索引在该数组中不存在。也许在函数 update(), $_POST['question'] 中。不确定。您应该提供完整的错误消息,例如文件和行。 另外:如果是这样的话。让这听起来更像一个问题。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2015-12-06
    • 1970-01-01
    • 2022-08-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-26
    • 1970-01-01
    相关资源
    最近更新 更多