Codeigniter入门学习笔记11—文件上传
- 很久很久以前学习Codeigniter的笔记记录,很随意,但都是自己记录的,希望对需要的人有所帮助。
- 本文使用word2013编辑并发布
- Postbird | There I am , in the world more exciting!
- Postbird personal website : http://www.ptbird.cn
文件上传
1、手动创建好上传目录
2、controllers/user
3、views/user/fileAction.php
//表单需要强调是文件上传
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>file</title>
<link rel="stylesheet" href="">
</head>
<body>
<form action="<?php echo site_url('user/upload')?>" method="post" enctype="multipart/form-data">
<input type="file" name="pic"/>
<input type="submit" value="上传"/>
</form>
</body>
</html>
4、$this->upload->data();
返回信息

浙公网安备 33010602011771号