2016-09-21 93 views
0

實際上我有學生記錄在$ students數組中,並且$ students中有另一個數組,名稱是skill [],這是一個複選框表單字段名稱,所以請告訴我如何使用json_encode和where。數據沒有插入到codeigniter數據庫中

輸入形式

<td>ENTER SKILLS</td> 
<td> 
<input type="checkbox" name="skills[]" value="php">php<br> 
<input type="checkbox" name="skills[]" value="dotnet">dotnet<br> 
<input type="checkbox" name="skills[]" value="java">java<br> 
<input type="checkbox" name="skills[]" value="ruby_on_rails">ruby_on_rails<br> 
</td> 

控制器

<?php 
    public function insert(){ 
      if ($this->input->post('add')==true) 
      { 
$student = array('name' => $this->input->post('name'), 
'email' => $this->input->post('email'), 
'skills' => $this->input->post(json_encode(skills)), 
'notes' => $this->input->post('notes'), 
'gender' => $this->input->post('gender')); 
        $result = $this->Student_info_model->insertStudent($student); 
        if($result==true){ 
          echo "inserted"; 
        } 
        else { 
          echo "Not Inserted"; 
        } 
      } 
    } 
    ?> 

模型

function insertStudent($student){ 
    $this->db->insert('student_info_table', $student); // insert data into "student_info_table" table` 
    if ($this->db->affected_rows() > 0) { 
     return true; 
    } 
    else { 
     return false; 
    } 
} 

錯誤

Error Number: 1048 

Column 'skills' cannot be null 

INSERT INTO `student_info_table` (`name`, `email`, `skills`, `notes`, `gender`) VALUES ('gailyn', '[email protected]', NULL, 'dsas', 'male') 

Filename: C:/xampp/htdocs/codeigniter/system/database/DB_driver.php 

Line Number: 691 
+0

這是什麼:'$這個 - >輸入 - >後(json_encode(技能)) '?只有技能? –

+1

它顯示「插入」還是「未插入」? – wallyk

+0

是的,哪裏出了問題? –

回答

2

據我瞭解,您想從http請求中獲取技能數組,然後對其進行編碼並將其保存到數據庫中。爲此,請使用json_encode($this->input->post('skills')而不是$this->input->post(json_encode(skills)),因此您首先獲取數據,然後將json編碼應用於其上。

+0

感謝它的工作@Radu弗拉德 – mickey

0

試試這個:json_encode($this->input->post('skills'))您需要得到使用輸入崗位技能的價值,然後根據需要將其轉換使用json_encode

+0

謝謝@ Sandeep.K它的工作。 – mickey