码迷,mamicode.com
首页 > Web开发 > 详细

Codeigniter入门学习笔记11—文件上传

时间:2016-05-09 17:05:14      阅读:279      评论:0      收藏:0      [点我收藏+]

标签:

  • 很久很久以前学习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();

????返回信息

技术分享

Codeigniter入门学习笔记11—文件上传

标签:

原文地址:http://www.cnblogs.com/postbird/p/5474571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!