codeigniter数据未插入数据库中

时间:2012-12-06 22:20:47

标签: php database insert codeigniter-2

我是CodeIgniter的新手,我刚刚在框架内跟踪了CRUD操作的教程,但我的数据没有插入到我的数据库中。这是我的代码:

控制器:site.php

<?php
class Site extends CI_Controller
{
  function index()
  {
    $this->load->view("home");

  }
  function create()
  {
    $data=array('title'=>$this->input->post("title"),
        'song'=>$this->input->post("song")
        );
    $this->site_model->add_record($data);
    $this->index();
  }
}

查看:home.php

<html>
  <head>
    <title>my page</title>
    <style type="text/css">
    input,label
    {
      display:block;
    }
    </style>
  </head>
  <body>
    <?php echo form_open('site/create'); ?>
    <p>
      <label for="title">Title:</label>
      <input type="text" name="title" id="title" />
    </p>
    <p>
      <label for="content">Song:</label>
      <input type="text" name="song" id="song" />   
    </p>
    <p>
      <input type="submit" value="submit"/>
    </p>
    <?php echo form_close(); ?>
  </body>
</html>

型号:site_model.php

<?php
class site_model extends CI_Model
{
  function getAll()
  {
    $q=$this->db->get('name');
    return $q->result();
  }
  function add_record($data)
  {
    $this->db->insert("name",$data);
    return;
  }
  function update_record($data)
  {
    $this->db->where("id",14);
    $this->db->update('name',$data);
  }
  function delete_row($data)
  {
    $this->db->where("id",$this->uri->segment(3));
    $this->db->delete('name',$data);
  }
}

我的表名是名称,我有3个字段:id(auto_increment),标题和歌曲。非常感谢帮助。

1 个答案:

答案 0 :(得分:0)

在调用模型函数之前添加此行。

$this->load->model('site_model');

之后调用模型函数

$this->site_model->add_record($data);

我认为这将解决您的问题

此致

iijb