|
楼主 |
发表于 2009-8-5 13:12:30
|
显示全部楼层
控制器就是这个
function do_upload()
{
echo ! $this->input->post('tex') ? '' : $this->input->post('tex');
// C:\Documents and Settings\OuKarai\デスクト\id0121fq336c11d0121fq336c11d0121fq336c1.jpg
$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);
$data = $this->_get_data();
if ( ! $this->upload->do_upload())
{
$data['error'] = $this->upload->display_errors();
$this->load->view('image_select', $data);
}
else
{
$data = array('upload_data' => $this->upload->data());
echo "good job";
//$this->load->view('image_select', $data);
}
} |
|