这是我的控制器。这里的函数add_post()
是用于添加和更新数据的函数。问题是,如果我想编辑表单,那么我可以将数据库中的值获取到相应区域的表单中,但是当我想使用相同的功能添加数据时,我不能。我搜索了很多,但找不到解决方案。
<?php
class Blog_controller extends CI_Controller {
public function index() {
$this->get_post();
}
public function __construct() {
parent::__construct();
$this->load->helper('form');
$this->load->helper('url');
$this->load->model('blog_model');
}
function add_post($id) {
if($id==NULL) {
return $this->load->view('admin/add_post');
} else {
$data['query']=$this->blog_model->get_single_post($id);
$this->load->view('admin/add_post',$data);
}
}
function do_upload() {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('premium/main', $error);
} else {
$this->upload->do_upload();
$data=$this->upload->data();
$filename=$data['file_name'];
$this->blog_model->insert_post($filename);
}
}
function get_post() {
$data['query']=$this->blog_model->get_post();
$this->load->view('premium/main',$data);
}
function view_table() {
$data['query']=$this->blog_model->get_post(); $this->load->view('admin/view_table',$data);
}
}
?>
MODEL
这是我项目的模型。我想使用单个函数插入和更新数据,即 insert_post()。
<?php
Class Blog_model extends CI_Model
{
function __construct()
{
parent::__construct();
$this->load->database();
}
function insert_post($filename)
{
$data=array(
'title'=>$this->input->post('title'),
'description'=>$this->input->post('description'),
'publish'=>$this->input->post('publish'),
'image'=>$filename,
);
$this->db->insert('post',$data);
redirect('blog_controller');
}
function get_post()
{
$query = $this->db->get_where('post');
return $query->result();
}
function get_single_post($id)
{
$query = $this->db->get_where('post',array('id'=>$id));
return $query->row($id);
}
}
?>
这是我的看法。在这种形式中,我想在用户想要插入数据并且用户想要编辑时添加数据,那么数据应该在表单的相应字段中检索并应该更新......
<html>
<body>
<h1>Add Blog Title</h1>
<?php function add_post($id);?>
<?php echo form_open_multipart('blog_controller/do_upload');?>
<p>Title : <input type="text" name="title" value="<?php if($id==0){echo $query->title;}?>"></br></p>
<p>Description : <textarea name="description" rows="5"> <?php echo $query->title;?></textarea></br/></p>
<p>Current Image : <img src="<?php echo base_url();?>/uploads/<?php echo $query->image;?>"</b></p>
<p>Image : <?php echo form_upload('userfile');?></b></p>
<p>Publish ?: <input type="checkbox" name="publish" value="1" <?php if($query->publish == 1) echo 'checked="checked"';?>></br></p>
<input type="submit" value="submit">
</form>
</body>
</html>
这是我的表,从中传递了相应的编辑字段 ID,因此我们可以查看表单中的数据,并且可以知道我们要编辑哪个数据的哪个字段..
<html>
<body>
<table border="2px">
<tr>
<td>ID</td>
<td>Title</td>
<td>Description</td>
<td>image</td>
<td>Action</td>
</tr>
<?php foreach($query as $a):?>
<tr>
<td><?php echo $a->id;?></td>
<td><?php echo $a->title;?></td>
<td><?php echo $a->description;?></td>
<td><img src="<?php echo base_url();?>/uploads/<?php echo $a->image?>" height="100px" width="100px"></td>
<td><?php echo anchor('blog_controller/add_post/'.$a->id,"Edit");?></td>
<td><?php echo anchor('blog_controler/delete_post/'.$a->id,"Delete");?></td>
<?php endforeach;?>
</tr>
</table>
</body>
</html>