기본 콘텐츠로 건너뛰기

Practice codeigniter with net.tutus lecture

Practice codeigniter with net.tutus lecture

Getting Started With the Framework

Database Selecting Methods

Sending Emails

Newsletter Signup

CRUD

Login

Pagination

AJAX

File Uploading and Image Manipulation

The Calendar Library

File and Directory Operations

Shopping Cart

Extending the Framework

Security

Profiling, Benchmarking and Hooks

Displaying & Sorting Tabular Data

Search Results without Query Strings

공유하기 글 요소 저작자표시

넷 튜스 에서 제공하는 코드 이그나이터 튜토리얼을 가지고 벌써 한달을 넘게 끌고 있는데,물론 다른 작업들 때문에 바뻐서 못한 것도 있기는 하지만 서도,이 튜토리얼을 문제점은 버전업이 되는 프레임워크에 맞추어서 소스코드를 업데이트 하지 않는다에 있다.CI 1.7 로 하면 잘 나오는것을 CI.2.0.3 으로 하면 에러가 나온단 말이다.제일로 간단한게 고칠수 있는것이 CI_를 붙여주는것이기 는 하지만,안으로 살펴보면 버전업으로 고쳐진것이 꽤 있어서 인지, 그리 녹록하게 작동하질 않는다.비디오가 17개로 이루어져 있다.나는 지금 8번에서 딱 막혔는데, 이전까지는 제퍼리가 강의를 하다가 다른 사람이 나와서 강의를 한다. 솔직히 실력은 후자가 나은것 같고, 발음도 좀 덜 부담스럽다.

from http://codeigniter.tistory.com/2 by ccl(A) rewrite - 2020-03-07 02:55:25

댓글

이 블로그의 인기 게시물

[PHP] 코드이그니터 - 파일업로드 구현

[PHP] 코드이그니터 - 파일업로드 구현 파일 업로드 이번에 PHP 프레임워크인 코드 이그니터(Codeigniter)를 사용하여 홈페이지를 만드는데 사용한 이미지 업로드용 코드 입니다. upload 라이브러리를 사용하고 app~ 와 같은 위치에 upload 폴더를 만드고 다음 코드를 사용한다음 ajax 로 호출하여 파일을 업로드 합니다. function index() { // Upload 설정 $config['upload_path'] = './upload/'; $config[\'allowed_types\'] = 'gif|jpg|png'; $config['max_size'] = 100; // 100k $config['max_width'] = 1024; $config['max_height'] = 768; $this->load->library('upload', $config); $data = array(); if (! $this->upload->do_upload("service_image")) { $error = array('error' => $this->upload->display_errors()); } else { //$data = array('upload_data' => $this->upload->data()); $this->output->set_output("./upload/".$this->upload->data('file_name')); } } jquery 를 이용한 파일 업로드 호출 코드 function upload() { var datas, xhr; datas = new FormData(); datas.append( 'service_image', $( ...

2017년 1월 스타트업에서 구인할때 주로 원하는 개발 기술

2017년 1월 스타트업에서 구인할때 주로 원하는 개발 기술 php mysql linux android git kotlin gcm/fcm python mssql mongodb amazon aws ios objective-c swift github python c++ django python postgresql amazon aws html5/css3/javascript android java mysql python c++ c# java aws cloud-server dbms node.js postgresql redis nginx react.js hapi.js amazon aws restful-api angularJS jQuery html5/css3/javascript android firebase custom ui component restful-api asp.net c# html css javascript bootstrap angularjs node.js php mongodb redis 프론트엔드 주요 기술 javascript jquery ajax angularjs wbesocket html5/css3/javascript android ios java xcode node.js coffeescript mysql amazon ec2 amazon es3 android ios node.js php python java ios php mysql apache python android redis node.js jquery msa node.js java restful-api linux nosql golang redis nginx ...

[공학] 목차

[공학] 목차 자동차공학 컴퓨터공학 컴퓨터공학 | 개발환경 컴퓨터공학 | 웹개발 컴퓨터공학 | 모바일개발 ✓ 컴퓨터공학 | 운영체제 컴퓨터공학 | 프로그래밍 컴퓨터공학 | 네트워크 컴퓨터공학 | 데이터베이스 from http://sanctacrux.tistory.com/679 by ccl(A) rewrite - 2020-03-12 16:54:22