128june

[PHP Storm] Form Helper ( form_open() 함수 ) 본문

JetBrain/PHP Storm & Codeigniter

[PHP Storm] Form Helper ( form_open() 함수 )

128june 2020. 6. 10. 15:02
반응형

form helper란?

form helper는 form 조작에 필요한 함수들을 제공합니다.

헬퍼 로딩

$this->load->helper('form');

form 함수 사용

form_open( $action (string), $attributes (array), $hidden (array)

  • $action (string) – Form action/target URI string
  • $attributes (array) – HTML attributes
  • $hidden (array) – An array of hidden fields’ definitions

ex) 

<?php echo form_open(null, array('method'=>'get')); ?>

생성 결과

<form method="get" accept-charset="utf-8" action="기반url/">

$attributes (array) => 속성 추가하기

속성은 연관 배열로 만들어 두번째 파라미터로 전달하여 설정할 수 있습니다.

// 1번 방법
$attributes = array('class' => 'email', 'id' => 'myform');
echo form_open('email/send', $attributes);

// 2번 방법
echo form_open('email/send', 'class="email" id="myform"');

결과

<!-- http://example.com/index.php/가 기본 설정 url -->
<form method="post" accept-charset="utf-8" action="http://example.com/index.php/email/send" class="email" id="myform">

출처

http://www.ciboard.co.kr/user_guide/kr/helpers/form_helper.html

 

Form Helper ‐ 코드이그나이터 3.0 한글매뉴얼

HTML-formatted form validation error message(s)

www.ciboard.co.kr

반응형
Comments