1)找到config文件夹中的autoload.php将其中的 $autoload['helper'] = array('') 改为$autoload['helper'] = array('file');
2)创建一个类在开始的function __construct( )加入 $this->load->helper(array('form','url'));
例:
function __construct()
{
parent::__construct();
$this->load->helper(array('form','url'));
}
3)在view文件夹里面的视图页面和平时一样
<form enctype="multipart/form-data" method="post" action="<=?site_url('admin/add_ap_ok')?>">
</form>
4)要在数据发送过去的页面对应的函数中进行上传图片的配置,而不是在提交数据页面进行,
例:
数据在add_ap.php 填好后提交到 add_ap_ok.php 所以应该在add_ap_ok()函数中进行上传图片的配置,下面是源码
function add_ap_ok()
{
$config['upload_path'] = './upload/'; //这个路径很重要
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '1024';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if(!$this->upload->do_upload('cs_ap_img'))
{
echo $this->upload->display_errors();
}
else
{
$data['upload_data']=$this->upload->data(); //文件的一些信息
$img=$data['upload_data']['file_name']; //取得文件名
}
$this->load->Model('Madmin');
$this->Madmin->insert_ap();
}
5)在model里怎样得到图片的名称呢?我看了下upload类的源文件后来用 $img = $this->upload->file_name 试了下,还真成功了。
例:
function insert_ap()
{
$img = $this->upload->file_name;
$this->db->query("INSERT INTO ap(cs_ap_cate,cs_ap_img,cs_ap_title,cs_ap_know,cs_ap_solution)
VALUES('$cate','$img','$title','$know','$solution')");
return $this->db->affected_rows();
}
这个图片上传问题纠结了我半天,现在终于解决了,给大家分享下
2)创建一个类在开始的function __construct( )加入 $this->load->helper(array('form','url'));
例:
function __construct()
{
parent::__construct();
$this->load->helper(array('form','url'));
}
3)在view文件夹里面的视图页面和平时一样
<form enctype="multipart/form-data" method="post" action="<=?site_url('admin/add_ap_ok')?>">
</form>
4)要在数据发送过去的页面对应的函数中进行上传图片的配置,而不是在提交数据页面进行,
例:
数据在add_ap.php 填好后提交到 add_ap_ok.php 所以应该在add_ap_ok()函数中进行上传图片的配置,下面是源码
function add_ap_ok()
{
$config['upload_path'] = './upload/'; //这个路径很重要
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '1024';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if(!$this->upload->do_upload('cs_ap_img'))
{
echo $this->upload->display_errors();
}
else
{
$data['upload_data']=$this->upload->data(); //文件的一些信息
$img=$data['upload_data']['file_name']; //取得文件名
}
$this->load->Model('Madmin');
$this->Madmin->insert_ap();
}
5)在model里怎样得到图片的名称呢?我看了下upload类的源文件后来用 $img = $this->upload->file_name 试了下,还真成功了。
例:
function insert_ap()
{
$img = $this->upload->file_name;
$this->db->query("INSERT INTO ap(cs_ap_cate,cs_ap_img,cs_ap_title,cs_ap_know,cs_ap_solution)
VALUES('$cate','$img','$title','$know','$solution')");
return $this->db->affected_rows();
}
这个图片上传问题纠结了我半天,现在终于解决了,给大家分享下