<html>
<head>
<title>Upload Form</title>
</head>
<body>
<?php echo $error;?>
<?php echo form_open_multipart('upload/do_upload');?>
<input type="file" name="userfile" size="20"/>
<br><br>
<input type="submit" value="upload"/>
</form>
</body>
</html>
class Upload extends CI_Controller{
public function __construct(){
parent::__construct();
$this->load->helper("form","url");
}
public function index(){
$this->load->view('test',array("error"=>''));
}
public 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('userfile')){
$error=array('error'=>$this->upload->display_errors());
$this->load->view('test',$error);
}else{
$data=array('upload_data'=>$this->upload->data());
$this->load->view('upload_success',$data);
}
}
}
<html>
<head>
<title>Upload Form</title>
</head>
<body>
<h3>Your file was successfully uploaded!</h3>
<ul>
<?php <foreach($upload_data as $item=>$value):?>
<li>
<?php echo $item;?>:<?php echo $value;?>
</li>
<?php?>
</ul>
</body>
</html>
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有