CI 묻고 답하기

제목 todo 보기 함수 view()만들기.
글쓴이 foglove 작성시각 2013/11/20 16:11:51
댓글 : 2 추천 : 0 스크랩 : 0 조회수 : 13297   RSS
<time datetime="<br />< b>Fatal error</b>: Call to undefined function mdate() in <b>C:\xampp\htdocs\todo\application\views\todo\list_v.php</b> on line <b>52</b><br />

메세지 나옵니다.

책을 보니 todo 주소를 미리 만들어 입력 합니다 라고 써 있는데
어떻게 만드는지 잘 모르겠는데 알려 주실분 없나요?

<?php
foreach ($list as $lt)
{
?>
<tr>
     <th scope="row">
      <?php echo $lt->id;?>
     </th>
     <td><a rel="external" href="/todo/index.php/main/view/<?php echo $lt->id;?>"><?php echo $lt->content;?></a></td>
     <td><time datetime="<?php echo mdate("%Y-%M-%j", human_to_unix($lt->created_on));?>"><?php echo $lt->created_on;?></time></td>
     <td><time datetime="<?php echo mdate("%Y-%M-%j", human_to_unix($lt->due_date));?>"><?php echo $lt->due_date;?></time></td>
    </tr>
<?php
}
?>

52번째 줄은 time datetime 이라고 시작 하는 줄이 52번째 줄 입니다.

기초가 많이 부족 한지라 이런걸 물어 보네 라고 생각 하는 사람도 있을 껀데 혼자서 3시간넘게 해보다가 안되서 물어 보는 거니 너그럽게 이해점 부탁 드려요.
 다음글 disallowed characters 관련하여 질문 ... (5)
 이전글 [해결] http://주소/index.php/welco... (4)

댓글

책상다리 / 2013/11/20 16:19:45 / 추천 0
 $this->load->helper('url'); -> $this->load->helper(array('url', 'date')); 
config->authload 파일 보시면 위 부분을 수정해주셔야 할겁니다.
만들면서 배우는 CodeIgniter 게시판 가시면 오탈자 수정 게시물도 참고하시면 좋습니다. 
변종원(웅파) / 2013/11/20 16:49:08 / 추천 0
좌측메뉴에 만들면서 배우는 CodeIgniter 게시판이 따로 있습니다.
가급적이면 책관련 질문은 그쪽에 올려주세요.
오탈자 안내에 등록되어 있습니다. 참고하세요.