﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>CodeIgniter 한국사용자포럼 - 만들면서 배우는 CodeIgniter Q&amp;A</title><link>http://ww.w.codeigniter-kr.org/bbs/lists/cibook</link><language>ko</language><generator>TapBBS</generator><copyright>http://ww.w.codeigniter-kr.org/</copyright>                <item>
                    <title>오탈자 안내</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=1608</link>
                    <description>책 78페이지의 스키마입니다.use ci_book;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
CREATE TABLE `ci_board` (&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `board_id` int(10) NULL AUTO_INCREMENT,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `board_pid` int(10) NULL DEFAULT &amp;#39;0&amp;#39; COMMENT &amp;#39;원글번호&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `user_id` varchar(20) NULL COMMENT &amp;#39;작성자ID&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `user_name` varchar(20) NOT NULL COMMENT &amp;#39;작성자이름&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `subject` varchar(50) NOT NULL COMMENT &amp;#39;게시글제목&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `contents` text NOT NULL COMMENT &amp;#39;게시글내용&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `hits` INT(10) NOT NULL COMMENT &amp;#39;조회수&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; `reg_date` datetime NOT NULL COMMENT &amp;#39;등록일&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; PRIMARY KEY (`board_id`),&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; INDEX `board_pid` (`board_pid`)&lt;br /&gt;
&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
COMMENT=&amp;#39;CodeIgniter &amp;lt;/span&amp;gt;&amp;lt;span &amp;gt;게시판&amp;lt;/span&amp;gt;&amp;lt;span lang=&amp;quot;EN-US&amp;quot;&amp;gt;&amp;#39;&lt;br /&gt;
&lt;br /&gt;
COLLATE=&amp;#39;utf8_general_ci&amp;#39;&lt;br /&gt;
&lt;br /&gt;
ENGINE=MyISAM;4.1절 게시판 테이블 만들기의 스키마입니다.제가 테스트한 윈도우7, xampp1.8.1 환경에서 에러가 나지 않아 소스를 올렸는데 한분이 에러보고를 해주셨습니다.hits 부분을 다음과 같이 수정하면 됩니다.`hits` INT(10) NOT NULL DEFAULT &amp;#39;0&amp;#39;&amp;nbsp;COMMENT &amp;#39;조회수&amp;#39;,</description>
                    <pubDate>Tue, 23 Jul 2013 18:38:46 +0900</pubDate>
                    <dc:creator>변종원(웅파)</dc:creator>
                </item>
                            <item>
                    <title>todo 게시판 url문제</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=23766</link>
                    <description>main.php&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if (!defined(&amp;#39;BASEPATH&amp;#39;)) exit(&amp;#39;No direct script access allowed&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;* todo 컨트롤러&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
class Main extends CI_Controller&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function __construct()&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parent::__construct();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;database();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;model(&amp;#39;todo_m&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;helper(array(&amp;#39;url&amp;#39;, &amp;#39;date&amp;#39;));&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; public function index()&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;lists();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; /*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;* todo 목록&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; public function lists()&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $data[&amp;#39;list&amp;#39;] = $this-&amp;gt;todo_m-&amp;gt;get_list();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;view(&amp;#39;todo/list_v&amp;#39;, $data);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;* todo 조회 &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function view()&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // todo 번호에 해당하는 데이터 가져오기&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $id = $this-&amp;gt;uri-&amp;gt;segment(3);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$data[&amp;#39;views&amp;#39;] = $this-&amp;gt;todo_m-&amp;gt;get_view($id);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// view 호출&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$this-&amp;gt;load-&amp;gt;view(&amp;#39;todo/view_v&amp;#39;, $data);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
/* End of file main.php */&lt;br /&gt;
&lt;br /&gt;
/* Location: ./application/controllers/main.php */&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
-------------------------------------------&lt;br /&gt;
&lt;br /&gt;
todo_m.php&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if (!defined(&amp;#39;BASEPATH&amp;#39;)) exit(&amp;#39;No direct script access allowed&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
/*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;* todo 모델&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
class Todo_m extends CI_Model&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function __construct()&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parent::__construct();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function get_list() {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $sql = &amp;quot;SELECT * FROM items&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $query = $this-&amp;gt;db-&amp;gt;query($sql);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $result = $query-&amp;gt;result();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $result;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;/*&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;* todo 조회&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function get_view($id) {&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $sql = &amp;quot;SELECT * FROM items WHERE id=&amp;#39;&amp;quot; . $id . &amp;quot;&amp;#39;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $query = $this -&amp;gt; db -&amp;gt; query($sql);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $result = $query -&amp;gt; row();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $result;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
/* End of file todo_m.php */&lt;br /&gt;
&lt;br /&gt;
/* Location: ./application/Models/todo_m.php &amp;nbsp;*/&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
--------------------------------&lt;br /&gt;
&lt;br /&gt;
view_v.php&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;lt;head&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;meta charset=&amp;quot;UTF-8&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;meta name=&amp;quot;apple-mobile-web-app-capable&amp;quot; content=&amp;quot;yes&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;meta name=&amp;quot;viewport&amp;quot; content=&amp;quot;width=device-width,initial-scale=1,user-scalable=no&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;CodeIgniter&amp;lt;/title&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--[if lt IE 9]&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;http://html5shiv.googlecode.com/svn/trunk/html5.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;link type=&amp;quot;text/css&amp;quot; rel=&amp;#39;stylesheet&amp;#39; href=&amp;quot;/todo/include/css/bootstrap.css&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/head&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;lt;body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;main&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;header id=&amp;quot;header&amp;quot; data-role=&amp;quot;header&amp;quot; data-position=&amp;quot;fixed&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 만들면서 배우는 CodeIgniter&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;small&amp;gt;실행 예제&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;nav id=&amp;quot;gnb&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a rel=&amp;quot;external&amp;quot; href=&amp;quot;/todo/index.php/main/lists/&amp;quot;&amp;gt;todo 애플리케이션 프로그램&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/nav&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;article id=&amp;quot;board_area&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;h1&amp;gt;Todo 조회&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/header&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;table cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; class=&amp;quot;table table-striped&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;thead&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;&amp;lt;?php echo $views -&amp;gt; id;?&amp;gt; 번 할일&amp;lt;/th&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;&amp;lt;?php echo $views -&amp;gt; created_on;?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th scope=&amp;quot;col&amp;quot;&amp;gt;&amp;lt;?php echo $views -&amp;gt; due_date;?&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/thead&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tbody&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th colspan=&amp;quot;3&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;?php echo $views -&amp;gt; content;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/th&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tbody&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tfoot&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;th colspan=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;/todo/index.php/main/lists/&amp;quot; class=&amp;quot;btn btn-primary&amp;quot;&amp;gt;목록&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;/todo/index.php/main/delete/&amp;lt;?php echo $this -&amp;gt; uri -&amp;gt; segment(3); ?&amp;gt;&amp;quot; class=&amp;quot;btn btn-danger&amp;quot;&amp;gt;삭제&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;/todo/index.php/main/write/&amp;quot; class=&amp;quot;btn btn-success&amp;quot;&amp;gt;쓰기&amp;lt;/a&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/th&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tfoot&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/article&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;footer&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;&amp;lt;a class=&amp;quot;azubu&amp;quot; href=&amp;quot;http://www.cikorea.net/&amp;quot; target=&amp;quot;blank&amp;quot;&amp;gt;CodeIgniter 한국 사용자 포럼&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;small&amp;gt;Copyright by &amp;lt;em class=&amp;quot;black&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;mailto:zhfldi4@gmail.com&amp;quot;&amp;gt;Palpit&amp;lt;/a&amp;gt;&amp;lt;/em&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/footer&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
routes.php&lt;br /&gt;
&lt;br /&gt;
$route[&amp;#39;default_controller&amp;#39;] = &amp;#39;main&amp;#39;;&lt;br /&gt;
&lt;br /&gt;
$route[&amp;#39;404_override&amp;#39;] = &amp;#39;&amp;#39;;&lt;br /&gt;
&lt;br /&gt;
$route[&amp;#39;translate_uri_dashes&amp;#39;] = FALSE;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
-------------&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
환경은 엔진엑스입니다.&lt;br /&gt;
&lt;br /&gt;
현재 mnmp 통합 환경설정툴을 쓰고 있는데&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
http://localhost/todo/&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
이걸로 리스트 목록이 나오는데 상세보기 부분이 안나옵니다.&lt;br /&gt;
&lt;br /&gt;
url이 어디인가요 ㅠㅠ&lt;br /&gt;
&lt;br /&gt;
도와주세요 ㅠㅠㅠ&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
http://localhost/todo/index.php/main/view/1&lt;br /&gt;
&lt;br /&gt;
어디 부분을 빼야할까요?&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;</description>
                    <pubDate>Thu, 21 Oct 2021 19:52:40 +0900</pubDate>
                    <dc:creator>닉네임work</dc:creator>
                </item>
                            <item>
                    <title>코드이그나이터 라이브러리들 문의</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=23551</link>
                    <description>코드 이그나이터 필수 라이브러리 아니면&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
적용 시키는 방법 등 관련 자료들 링크 알려주시면 참고하겠습니다.</description>
                    <pubDate>Wed, 11 Aug 2021 09:46:24 +0900</pubDate>
                    <dc:creator>코드이글나이터8</dc:creator>
                </item>
                            <item>
                    <title>DB 가져온 배열 확인 문의요</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=23547</link>
                    <description>라라벨에서는 dd(); 찍으면 잘 나오는데&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
코드이그나이터3 에서는 어떤 방식으로 보는지 궁금합니다.&amp;nbsp;</description>
                    <pubDate>Tue, 10 Aug 2021 11:33:26 +0900</pubDate>
                    <dc:creator>코드이글나이터8</dc:creator>
                </item>
                            <item>
                    <title>ci 처음 시작했는데 시작부터 막히네요. 도움좀 부탁드립니다.</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=22945</link>
                    <description>안녕하세요.&lt;br /&gt;
&lt;br /&gt;
ci&amp;nbsp; 첫 공부하는 ci 새내기 입니다.&lt;br /&gt;
&lt;br /&gt;
ci 를 알게되고 &amp;#39;만들면서 배우는 CodeIgniter 프레임워크&amp;#39; 를 중고로 구입해서 이제서야 해보고 있습니다.&lt;br /&gt;
&lt;br /&gt;
예제를 따라해보는 중인데 시작부터 안되서 질문글을 남기게 됩니다.&lt;br /&gt;
&lt;br /&gt;
Todo 리스트를 나타내려고 하고 있습니다.&lt;br /&gt;
&lt;br /&gt;
예제만 따라했고 오타가 있는지 한참을 살펴보았지만 잘못 따라한 부분은 찾질 못했습니다.&lt;br /&gt;
&lt;br /&gt;
동작원리도 아직 파악 안되고... 단순 db select 해서 보여주는&lt;br /&gt;
&lt;br /&gt;
책의&amp;nbsp;첫 예제인데도 안되니 참... 마음이 아픕니다..&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
버전은&amp;nbsp;CodeIgniter-3.1.11&amp;nbsp; 입니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
일단 에러는&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
An Error Was Encountered&lt;br /&gt;
&lt;br /&gt;
------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Unable to load the requested file: helpers/data_helper.php&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
라고 뜨는 상황입니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
소스는 다음과 같습니다. (책 예제중 todo list 뿌리는 부분입니다. 쓰기도 진행 못햇어요 ㅠㅠ)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
(application/config/routes.php)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
$route[&amp;#39;default_controller&amp;#39;]&amp;nbsp;=&amp;nbsp;&amp;#39;main&amp;#39;;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
(application/controllers/main.php)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&amp;nbsp;if&amp;nbsp;(!defined(&amp;#39;BASEPATH&amp;#39;))&amp;nbsp;exit(&amp;#39;No&amp;nbsp;direct&amp;nbsp;script&amp;nbsp;access&amp;nbsp;allowed&amp;#39;);&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
class&amp;nbsp;Main&amp;nbsp;extends&amp;nbsp;CI_Controller&amp;nbsp;{&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;__construct()&amp;nbsp;{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;parent::__construct();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;load-&amp;gt;database();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;load-&amp;gt;model(&amp;#39;todo_m&amp;#39;);&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;load-&amp;gt;helper(array(&amp;#39;url&amp;#39;,&amp;nbsp;&amp;#39;data&amp;#39;));&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public&amp;nbsp;function&amp;nbsp;index()&amp;nbsp;{&amp;nbsp;$this-&amp;gt;lists();&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public&amp;nbsp;function&amp;nbsp;lists()&amp;nbsp;{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$data[&amp;#39;list&amp;#39;]&amp;nbsp;=&amp;nbsp;$this-&amp;gt;todo_m-&amp;gt;get_list();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$this-&amp;gt;load-&amp;gt;view(&amp;#39;todo/list_v&amp;#39;,&amp;nbsp;$data);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
(application/models/todo_m.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&amp;nbsp;if&amp;nbsp;(!defined(&amp;#39;BASEPATH&amp;#39;))&amp;nbsp;exit(&amp;#39;No&amp;nbsp;direct&amp;nbsp;script&amp;nbsp;access&amp;nbsp;allowed&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
class&amp;nbsp;Todo_m&amp;nbsp;extends&amp;nbsp;CI_Model&amp;nbsp;{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;__construct()&amp;nbsp;{&amp;nbsp;parent::__construct();&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;function&amp;nbsp;get_list()&amp;nbsp;{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$sql&amp;nbsp;&amp;nbsp;=&amp;nbsp;&amp;quot;SELECT&amp;nbsp;*&amp;nbsp;FROM&amp;nbsp;items&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$query&amp;nbsp;=&amp;nbsp;$this-&amp;gt;db-&amp;gt;query($sql);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$result&amp;nbsp;=&amp;nbsp;$query-&amp;gt;result();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;$result;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
(application/views/todo/list_v.php)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
foreach&amp;nbsp;($list&amp;nbsp;as&amp;nbsp;$lt)&amp;nbsp;{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;$lt-&amp;gt;id&amp;nbsp;.&amp;nbsp;&amp;#39;&amp;nbsp;|&amp;nbsp;&amp;#39;&amp;nbsp;.&amp;nbsp;$lt-&amp;gt;content;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;echo&amp;nbsp;&amp;#39;&amp;lt;hr&amp;gt;&amp;#39;;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
(application/config/database.php)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&lt;br /&gt;
$active_group&amp;nbsp;=&amp;nbsp;&amp;#39;default&amp;#39;;&lt;br /&gt;
&lt;br /&gt;
$query_builder&amp;nbsp;=&amp;nbsp;TRUE;&lt;br /&gt;
&lt;br /&gt;
$db[&amp;#39;default&amp;#39;]&amp;nbsp;=&amp;nbsp;array(&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;dsn&amp;#39;&amp;nbsp;&amp;nbsp;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;hostname&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;localhost&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;username&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;ci_user&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;password&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;****&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;database&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;cidb&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;dbdriver&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;mysqli&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;dbprefix&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;pconnect&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;FALSE,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;db_debug&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;(ENVIRONMENT&amp;nbsp;!==&amp;nbsp;&amp;#39;production&amp;#39;),&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;cache_on&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;FALSE,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;cachedir&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;char_set&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;utf8&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;dbcollat&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;utf8_general_ci&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;swap_pre&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;&amp;#39;&amp;#39;,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;encrypt&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;FALSE,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;compress&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;FALSE,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;stricton&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;FALSE,&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;failover&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;array(),&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;#39;save_queries&amp;#39;&amp;nbsp;=&amp;gt;&amp;nbsp;TRUE&lt;br /&gt;
&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
참고로 DB 의 Table 은 아래와 같습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	items&lt;br /&gt;
	&lt;br /&gt;
		&lt;br /&gt;
			int&lt;br /&gt;
			id&lt;br /&gt;
		&lt;br /&gt;
		&lt;br /&gt;
			varchar&lt;br /&gt;
			content&lt;br /&gt;
		&lt;br /&gt;
		&lt;br /&gt;
			date&lt;br /&gt;
			created_on&lt;br /&gt;
		&lt;br /&gt;
		&lt;br /&gt;
			date&lt;br /&gt;
			due_date&lt;br /&gt;
		&lt;br /&gt;
		&lt;br /&gt;
			int&lt;br /&gt;
			use&lt;br /&gt;
		&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
무엇을 잘못하였을까요?&lt;br /&gt;
&lt;br /&gt;
도움좀 부탁드립니다...</description>
                    <pubDate>Sun, 13 Dec 2020 22:26:51 +0900</pubDate>
                    <dc:creator>ci늦둥이</dc:creator>
                </item>
                            <item>
                    <title>페이징 부분 학습 중입니다.</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=22869</link>
                    <description>페이징 부분 학습 중인데 페이징 번호를 클릭하면 왜 base_url 이 현재 url 뒤어 붙는건가요?&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if ( ! defined(&amp;#39;BASEPATH&amp;#39;)) exit(&amp;#39;No direct script access allowed&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; // 게시판 메인 컨트롤러&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; class Board extends CI_Controller{&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; function __construct(){&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; parent::__construct();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;database();&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;model(&amp;#39;board_m&amp;#39;);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;helper(array(&amp;#39;url&amp;#39;, &amp;#39;date&amp;#39;));&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; // 주소에 메서드가 생략되었을 때 실행되는 기본 메서드가&amp;nbsp; &amp;nbsp; public function index(){&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;lists();&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; // 사이트 헤더, 푸터가 자동으로 추가&amp;nbsp; &amp;nbsp; public function _remap($method){&amp;nbsp; &amp;nbsp; &amp;nbsp; // 헤더 include&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;view(&amp;#39;header_v&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; if( method_exists($this, $method) ){&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;{&amp;quot;{$method}&amp;quot;}();&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; //푸터 include&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;view(&amp;#39;footer_v&amp;#39;);&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; //목록 불러오기&amp;nbsp; &amp;nbsp; public function lists(){&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // 페이지네이션 라이브러리 로딩 추가&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;library(&amp;#39;pagination&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // 페이지네이션 설정&amp;nbsp; &amp;nbsp; &amp;nbsp; $config[&amp;#39;base_url&amp;#39;] = &amp;#39;bbs/index.php/board/lists/ci_board/page&amp;#39;; // 페이징 주소&amp;nbsp; &amp;nbsp; &amp;nbsp; $config[&amp;#39;total_rows&amp;#39;] = $this-&amp;gt;board_m-&amp;gt;get_list($this-&amp;gt;uri-&amp;gt;segment(3), &amp;#39;count&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // 게시물의 전체 개수&amp;nbsp; &amp;nbsp; &amp;nbsp; $config[&amp;#39;per_page&amp;#39;] = 5; // 한 페이지에 표시할 게시물 수&amp;nbsp; &amp;nbsp; &amp;nbsp; $config[&amp;#39;uri_segment&amp;#39;] = 5; // 페이지 번호가 위치한 세그먼트&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // 페이지네이션 초기화&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;pagination-&amp;gt;initialize($config);&amp;nbsp; &amp;nbsp; &amp;nbsp; // 페이징 링크를 생성하여 view에 사용할 변수에 할당&amp;nbsp; &amp;nbsp; &amp;nbsp; $data[&amp;#39;pagination&amp;#39;] = $this-&amp;gt;pagination-&amp;gt;create_links();&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; // 게시물 목록을 불러오기 위한 offset, limit 값 가져오기&amp;nbsp; &amp;nbsp; &amp;nbsp; $page = $this-&amp;gt;uri-&amp;gt;segment(6, 1);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; if ( $page &amp;gt; 1 ) {&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $start = (($page/$config[&amp;#39;per_page&amp;#39;])) * $config[&amp;#39;per_page&amp;#39;];&amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $start = ($page-1) * $config[&amp;#39;per_page&amp;#39;];&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; $limit = $config[&amp;#39;per_page&amp;#39;];&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; $data[&amp;#39;list&amp;#39;] = $this-&amp;gt;board_m-&amp;gt;get_list($this-&amp;gt;uri-&amp;gt;segment(3), &amp;#39;&amp;#39;, $start, $limit);&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; $this-&amp;gt;load-&amp;gt;view(&amp;#39;board/list_v&amp;#39;, $data);&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; }&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;?&amp;gt;</description>
                    <pubDate>Mon, 16 Nov 2020 09:46:46 +0900</pubDate>
                    <dc:creator>황현빈</dc:creator>
                </item>
                            <item>
                    <title>페이징 쪽 하고 있는데요.</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=21840</link>
                    <description>물어보는 것도 서툴러서 어떻게 물어봐야 할지 모르겠네요.&lt;br /&gt;
&lt;br /&gt;
일단&lt;br /&gt;
&lt;br /&gt;
회사에서 코드이그나이터를 이용하여 웹페이지 제작해서&lt;br /&gt;
&lt;br /&gt;
아무것도 모르는 상태에 이것저것하다가&lt;br /&gt;
&lt;br /&gt;
페이징 까지 왔는데요.&lt;br /&gt;
&lt;br /&gt;
관련 사이트 보면서 하드코딩 하였으나..&lt;br /&gt;
&lt;br /&gt;
결과는&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
views에서 &amp;quot;Message: Undefined variable: pagination&amp;quot;&lt;br /&gt;
&lt;br /&gt;
페이지네이션 변수가 정의되지 않았다고 에러가 표시 되네요.&lt;br /&gt;
&lt;br /&gt;
글자 하나 틀리지 않고 코딩했으나 이유를 모르겠습니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
controllers 에서 밑에처럼 하면 선언 되는 거 아닌가요??&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	&lt;br /&gt;
		&lt;br /&gt;
			&lt;br /&gt;
			&amp;nbsp;$this-&amp;gt;load-&amp;gt;library(&amp;#39;pagination&amp;#39;);&lt;br /&gt;
&lt;br /&gt;
			$config[&amp;#39;base_url&amp;#39;] = &amp;#39;/LiberaEvent/notice/page&amp;#39;;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
			$config[&amp;#39;total_rows&amp;#39;] = $this -&amp;gt; Event_board -&amp;gt; get_list($this -&amp;gt;uri -&amp;gt; segment(3), &amp;#39;count&amp;#39;);&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
			$config[&amp;#39;per_page&amp;#39;] = 5;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
			$config[&amp;#39;uri_segment&amp;#39;] = 5;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
			$this -&amp;gt; pagination -&amp;gt; initialize($config);&lt;br /&gt;
&lt;br /&gt;
			$data[&amp;#39;pagination&amp;#39;] = $this -&amp;gt; pagination -&amp;gt; create_links();&amp;nbsp;&lt;br /&gt;
			&lt;br /&gt;
		&lt;br /&gt;
	&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
어디 어떻게 수정해야 할지 모르겠네요.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;</description>
                    <pubDate>Tue, 29 Oct 2019 19:04:52 +0900</pubDate>
                    <dc:creator>최고가되자</dc:creator>
                </item>
                            <item>
                    <title>185페이지 에러 메시지를 개별적으로 표시하기 문의 드립니다.</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=21363</link>
                    <description>가능한 혼자 해결해 보려 했으나 몇일을 삽질 하다가 실패 하여 문의 드립니다.&lt;br /&gt;
&lt;br /&gt;
게시판에 검색 해보아도 저와 같은 오류를 문의하신 분이 없으신 것 같습니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
보고 있는 책은 2013년 7월 초판 입니다.&lt;br /&gt;
&lt;br /&gt;
185 페이지 에러 메시지를 개별적 으로 표시 하기 에서 아이디를 입력 하지 않고&lt;br /&gt;
&lt;br /&gt;
그냥 전송 버튼을 클릭 하면..&lt;br /&gt;
&lt;br /&gt;
Unable to access an error message corresponding to your field name 아이디.(username_check)&lt;br /&gt;
&lt;br /&gt;
이라는 오류가 발생 합니다.&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
책&amp;nbsp;소스 그대로 작성하여 테스트 중인데요..&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
물론 아이디를 입력 하고 전송 버튼을 클릭하면 오류 발생하지 않고,&lt;br /&gt;
&lt;br /&gt;
디비에서 아이디 가지고 와 중복 여부도 확인 됩니다..&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
아이디가 빈란으로 넘어가지 않도록 VIEW 화면에서 막아야 하는 건지...&lt;br /&gt;
&lt;br /&gt;
아니면 현재 소스대로라면 저 오류가 발생하면 안되는 건지..만일 발생 하면 안되는 것 이라면&lt;br /&gt;
&lt;br /&gt;
어디에 오류가 있는 걸까요??&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
감사 합니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;</description>
                    <pubDate>Sat, 08 Jun 2019 15:58:22 +0900</pubDate>
                    <dc:creator>nataek</dc:creator>
                </item>
                            <item>
                    <title>만들면서 배우는 CodeIgniter 책 관련 문의있습니다.</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=20811</link>
                    <description>만들면서 배우는 CodeIgniter 이 책은 현재로써는 전혀 구하지 못하는건가요?&lt;br /&gt;
&lt;br /&gt;
코드이그나이터 관련 책을 찾아보는 중인데 이책은 절판된걸로 나와서 E북도 오프라인책도 구하질 못하더군요&lt;br /&gt;
&lt;br /&gt;
코드이그나이터 공부를 시작할려고 해서 책을 구하려고 하는데 이 책말고도 추천하는 책이 있다면 알고싶습니다</description>
                    <pubDate>Fri, 25 Jan 2019 11:57:31 +0900</pubDate>
                    <dc:creator>카케로</dc:creator>
                </item>
                            <item>
                    <title>지금 이 책으로 공부해도 될까요 ?</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=20460</link>
                    <description>안녕하세요. 이제 php 입문하고 코드이그나이터도 공부하려고 합니다.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;만들면서 배우는 CodeIgniter&amp;quot; 책 추천 받아서 공부하려고 봤더니 나온지 꽤 오래된 책이 더라구요.&lt;br /&gt;
&lt;br /&gt;
그 동안 버전이나 환경도 많이 바뀌었을텐데 지금 이 책으로 공부해도 될까요 ?&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
아니면 괜찮은 책 있으면 추천 부탁드립니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
감사합니다 !</description>
                    <pubDate>Thu, 20 Sep 2018 23:50:16 +0900</pubDate>
                    <dc:creator>편식쟁이</dc:creator>
                </item>
                            <item>
                    <title>오탈자 확인</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=20424</link>
                    <description>여기 게시판에 오탈자를 보라는데 오탈자를 어떻게 보는건가요?&lt;br /&gt;
&lt;br /&gt;
뭐 페이지별로 정렬이 되어있는것도 아니고 하나하나 페이지 다 넘겨가면서 봐야 하는건가요?&lt;br /&gt;
&lt;br /&gt;
오탈자 확인할것도 적은것도 아니고..&lt;br /&gt;
&lt;br /&gt;
오탈자들을 어떻게 확인하는건가요?</description>
                    <pubDate>Sun, 09 Sep 2018 16:52:47 +0900</pubDate>
                    <dc:creator>가로수</dc:creator>
                </item>
                            <item>
                    <title>데이터베이스 세션 설정 문의</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=20046</link>
                    <description>책이 2.x 기준이라 그런거 같은데&lt;br /&gt;
&lt;br /&gt;
데이터베이스 세션설정에 아래 두줄을 바꾸라고 나와있는데, 3.x에는 아래 내용이 없습니다. &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
$config[&amp;#39;sess_use_database&amp;#39;] = TRUE;&lt;br /&gt;
&lt;br /&gt;
$config[&amp;#39;sess_save_path&amp;#39;] = NULL;&lt;br /&gt;
&lt;br /&gt;
1. 그냥 추가하면 되는건지요? 아니면 3.x로 넘어가면서 데이터베이스 세션설정 방법이 달라진 건지요?&lt;br /&gt;
&lt;br /&gt;
2. 2.x로 개발하고 추후 3.x로 업그레이드하려면, 공수가 많이 들어가는지요?&amp;nbsp;</description>
                    <pubDate>Sat, 14 Jul 2018 12:33:28 +0900</pubDate>
                    <dc:creator>그동안</dc:creator>
                </item>
                            <item>
                    <title>책을 사고싶은데 물건이 없네요</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=19855</link>
                    <description>벌써 몇일째 새책 / 중고 가리지않고 검색중인데 모두 품절이네요&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
구매할 수 있는 방법이 없을까요?</description>
                    <pubDate>Thu, 17 May 2018 12:15:30 +0900</pubDate>
                    <dc:creator>엠곰</dc:creator>
                </item>
                            <item>
                    <title>책이 절판 됐던데.. 새로 출판 되는건가요?</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=19797</link>
                    <description>책을 구매하려고 마음먹고 있었는데 절판되었군요.;;&lt;br /&gt;
&lt;br /&gt;
ebook으로 하나 구입해 둘 걸 미루다가 구입을 못하게 돼서 아쉽네요.&lt;br /&gt;
&lt;br /&gt;
저자님 코드이그나이터 관련해서 책을 새로 출판하실 예정이&amp;nbsp;있으신지 궁금합니다.</description>
                    <pubDate>Wed, 02 May 2018 13:55:18 +0830</pubDate>
                    <dc:creator>인더제이</dc:creator>
                </item>
                            <item>
                    <title>게시물 안에 있는 이미지 삭제 문의</title>
                    <link>http://ww.w.codeigniter-kr.org/bbs/view/cibook?idx=19769</link>
                    <description>교재 &amp;quot;사진 SNS프로젝트&amp;quot;에&lt;br /&gt;
&lt;br /&gt;
나온대로 게시물을 삭제하면&lt;br /&gt;
&lt;br /&gt;
DB에서는 해당 항목이 삭제되지만 서버(uploads폴더)안에 있는 이미지 파일은 그대로 있더군요.&lt;br /&gt;
&lt;br /&gt;
그래서 찾아본 결과,&lt;br /&gt;
&lt;br /&gt;
unlink 함수를 이용하여 삭제할 수 있었습니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
그런데 문제는&lt;br /&gt;
&lt;br /&gt;
일반 게시판에서 발생했습니다.&lt;br /&gt;
&lt;br /&gt;
CKEditor를 이용하여 본문을 작성할 수 있도록 게시판을 만들었는데,&lt;br /&gt;
&lt;br /&gt;
이때 이미지를 포함하는&amp;nbsp;게시물을 작성 후 삭제해 보면&lt;br /&gt;
&lt;br /&gt;
서버(uploads폴더)안에 있는 이미지 파일은 그대로 남아있게 됩니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
삭제 시&lt;br /&gt;
&lt;br /&gt;
게시물 본문 html을 그대로 불러와 이미지 경로를 찾아서 그것들을 unlink함수에 담아...&lt;br /&gt;
&lt;br /&gt;
무식하게 삭제해야되나 고민하던 차에 질문드립니다.&lt;br /&gt;
&lt;br /&gt;
사실 저런 방법이 가능한지도 아직 잘 모르겠구요.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
좀더 효과적인 방법있으시면 알려주시길 바랍니다.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;</description>
                    <pubDate>Tue, 24 Apr 2018 10:23:24 +0830</pubDate>
                    <dc:creator>난만이</dc:creator>
                </item>
            </channel></rss>