본문 바로가기
반응형

코드이그나이터10

[CI4] 카페24에 설치 해보기 1. CodeIgniter 4 Download 다운로드 링크 : Welcome to CodeIgniter Welcome to CodeIgniter CodeIgniter 3 is the legacy version of the framework, intended for use with PHP 5.6+. This version is in maintenance, receiving mostly just security updates, and the current version is 3.1.13. codeigniter.com 2. Codeigniter 4 FTP Upload 3. `env` 파일의 파일명을 `.env` 로 변경하기 단, 각 설정을 env 파일을 통해 하실 경우 변경하시면 됩니다. env파일을 사용하.. 2023. 12. 30.
[PHP][CI3] 함수 헬퍼 ver 1.5 CI3용 헬퍼 저장용 2021. 7. 8.
[코드이그나이터3] korean/core_lang.php 0.3 /** * @version 0.3 * @since 2020.10.28 * @author 안주영 * Language > Korean */ //사이트 명칭 $lang['config_homepage'] = ''; /* * 단어 */ $lang['word_site_map'] = '사이트 맵'; $lang['word_member'] = '회원'; $lang['word_sign_up'] = '가입'; $lang['word_id'] = '아이디'; $lang['word_id_duplication_confirm'] = '아이디 중복 확인'; $lang['word_password'] = '비밀번호'; $lang['word_password_confirm'] = '비밀번호 확인'; $lang['word_alert_notif.. 2020. 11. 3.
[코드이그나이터] config/pagination.php * 설정파일 2020. 5. 20.
[코드이그나이터] Custom Helper 모음 v0.1 /** * @Version 0.1 * @last 2020.05.20 * @Author Rairen */ if ( ! function_exists('view_load')) { /** * @param $views_path String views 폴더 내 경로 * @param $data mixed load되는 파일에서 쓸 데이터 */ function view_load($views_path, $data = NULL) { $CI =& get_instance(); $CI->load->view($views_path, $data); } } if ( ! function_exists('add_stylesheet')) { /** * 스타일시트 추가 * * @param String|array $stylesheet 스타일시트태.. 2020. 5. 20.
[Jquery][CodeIgniter] 회원가입 관련 코드 모음. 1. SignUp.js var id_check = false; $(document).on('blur', 'input[name="id"]', function () { var id_check_text = $('.id_check_text'); if (this.value.length >= 4) { var pattern1 = /[0-9]/; var pattern2 = /[a-z]/; var pattern_count = 0; if (pattern1.test(this.value)) { pattern_count++; } if (pattern2.test(this.value)) { pattern_count++; } if (pattern_count === 1 || pattern_count === 2) { var f = $(.. 2020. 5. 20.
반응형