|
楼主 |
发表于 2010-3-15 13:39:58
|
显示全部楼层
回复 2# saturn
谢谢,看来我不是错在这个地方了……改成绝对路径也提示不对,把代码全部贴上来,希望帮忙看看吧~
控制器:
<?php
class imageupload extends Controller {
function __construct() {
parent::Controller();
$this->load->library('upload');
$this->load->helper(array('form','url'));
}
function index() {
$this->load->view('upload', array('error' => ' ' ));
}
function do_upload() {
$config['upload_path'] = 'D:\wamp\www\test\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('upload', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
}
?>
视图:
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('imageupload/do_upload');?>
<input type="file" name="userfile" size="30" />
<br />
<br />
<input type="submit" value="upload" />
</form>
</body>
</html>
再次谢谢大家的帮忙了~ |
|