'분류 전체보기'에 해당되는 글 256건

* /application/config/config.php

$config['log_threshold'] = 0;

* MVC(Model, View, Controller)

log_message('debug','게시판 로딩중'); // 흐름
log_message('var',var_export($board_id,1)); // 변수값 출력
show_error('에러 메시지') // '에러 메시지'가 출력되면서 멈춤

'php, codeigniter' 카테고리의 다른 글

사용자 비밀번호 암호화(password_bcrypt)  (0) 2014.10.15
세션(session) 이용하기  (0) 2014.10.15
config[] 환경 설정하기  (0) 2014.10.14
get_magic_quotes_gpc()  (0) 2014.10.14
form validation(폼 유효성 검사)  (0) 2014.10.13
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
$this->load->config('test') // config 폴더안에 test.php 환경파일 로드

* test.php

config['test'] = true;

* MVC 로드 방법

echo $this->conifg->item('test');

'php, codeigniter' 카테고리의 다른 글

세션(session) 이용하기  (0) 2014.10.15
로그파일 설정 및 처리  (0) 2014.10.14
get_magic_quotes_gpc()  (0) 2014.10.14
form validation(폼 유효성 검사)  (0) 2014.10.13
헬퍼(helper) 만들어서 사용하기  (0) 2014.10.13
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

jquery CDN

javascript, jquery 2014. 10. 14. 18:37
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
if(get_magic_quotes_gpc()) {
	$contents = $_POST['contents'];
} else {
	$contents = addslashes($_POST['contents']);
}
 

'php, codeigniter' 카테고리의 다른 글

로그파일 설정 및 처리  (0) 2014.10.14
config[] 환경 설정하기  (0) 2014.10.14
form validation(폼 유효성 검사)  (0) 2014.10.13
헬퍼(helper) 만들어서 사용하기  (0) 2014.10.13
$_POST 값이 안넘어올때  (0) 2014.10.13
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,

* 컨트롤러

$this->load->library('form_validation');
$this->form_validation->set_rules('title', '제목', 'required'); // 필드 검사
$this->form_validation->set_rules('description', '본문', 'required'); // 필드 검사

 

- required : 필수

- min_length[5] : 최소 5자

- max_length[10] : 최대 10자

- matches[re_password] : password 필드와 매칭

- valid_email : 메일주소 유효성

- is_unique[user.email] : user 테이블의 email 필드중에 중복값 검색

if ($this->form_validation->run() == FALSE) {
	$this->load->view('add');
} else {
	$topic_id = $this->topic_model->add($this->input->post('title'), $this->input->post('description'));
}

* 뷰

<?php echo validation_errors(); ?>
출처 : http://opentutorials.org/course/697/3835

 

'php, codeigniter' 카테고리의 다른 글

config[] 환경 설정하기  (0) 2014.10.14
get_magic_quotes_gpc()  (0) 2014.10.14
헬퍼(helper) 만들어서 사용하기  (0) 2014.10.13
$_POST 값이 안넘어올때  (0) 2014.10.13
지정된 날짜에만 팝업창 열기  (0) 2014.10.12
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

if ( ! function_exists('kdate')) {
	function kdate($stamp) {
		return date('o년 n월 j일, G시 i분 s초', $stamp);
	}
}
출처 : http://opentutorials.org/course/697/3836

 

 

'php, codeigniter' 카테고리의 다른 글

get_magic_quotes_gpc()  (0) 2014.10.14
form validation(폼 유효성 검사)  (0) 2014.10.13
$_POST 값이 안넘어올때  (0) 2014.10.13
지정된 날짜에만 팝업창 열기  (0) 2014.10.12
각 변수명으로 변경하기 - extract  (0) 2014.10.09
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,