본문 바로가기

728x90
반응형

전체 글

(281)
cookie 쿠키 사용 helper('cookie'); $cookie = array( 'name' => 'The Cookie Name', 'value' => 'The Value', 'expire' => '86500', 'domain' => '.some-domain.com', 'path' => '/', 'prefix' => 'myprefix_', ); set_cookie($cookie); 쿠키 불러오기 get_cookie('The Cookie Name')
폼검증 $rules['email'] = 'required|min_length[6]|max_length[50]|valid_email|is_unique[user.email]'; if($this->validate($rules)){ echo "true"; }else{ echo "false"; }
debugger 없애기 /* |-------------------------------------------------------------------------- | ERROR DISPLAY |-------------------------------------------------------------------------- | In development, we want to show as many errors as possible to help | make sure they don't make it to production. And save us hours of | painful debugging. */ error_reporting(-1); ini_set('display_errors', '1'); /* |----------..
[CI4] Codeigniter alert helper 만들기 헬퍼(helper) 헬퍼는 코드이그나이터에서 객체 지향(OOP) 형식으로 작성되지 않고 자유롭게 함수를 만들고 사용할 수 있다. 예를 들어 스크립트를 view에서 처리를 할때 컨트롤 단에서 매번 echo ""; } // alert 띄우고 뒤로 이동 function alert_back($text) { echo ""; } // alert 띄우고 창닫기 function alert_close($text) { echo ""; } // alert 띄우고 이동 function alert_move($text, $geturl) { echo ""; } 이렇게 만들어 놓고 쓰면 편하다. 컨트롤러 사용 예시 public function __construct() { /* * * 헬퍼 로드시 파일명이 script_helper.p..
[PHP] in_array() 함수 배열안에 값이 존재하는지 확인 $ip_arr = array("127.0.0.1", "192.282.45.23", "0.0.0.0"); $ip = "127.0.0.1"; // in_array(확인할 값, 배열); if(in_array($ip, $ip_arr)): echo "ok"; else: echo "fail"; endif; 결과 : ok
[PHP] XSS(크로스 사이트 스크립트) 시큐어코딩 1 str_replace 함수 str_replace('찾을 문자열', '치환할 문자열', 변수); 게시판이 입력폼으로 값을 받을때 이런식으로 값이 들어와서 db에 insert가 되면 리스트에서 계속 스크립트가 실행 되서 사용자들이 정상적으로 이용을 못하게 된다. 그래서 항상 필터링을 해줘야된다. $title = ''; $contents = $_POST['contents']; $title = str_replace("", "", $title); $contents = str_replace("", "", $contents); 이렇게 하면 결과는 alert('hi'); 앞뒤 script는 삭제된 값만 노출되서 스크립트가 실행되지 않는다. 2 htmlspecialchars 함수 $title = htmlspecial..
무료 이미지 다운로드 https://pixabay.com/ko/ 무료 로딩 이미지 https://icons8.com/ Free Icons, Clipart Illustrations, Photos, and Music Forum Mostly used for bugs, feature requests, and support. icons8.com https://loadingapng.com/ Loading APNG free online generator select animation template loadingapng.com http://www.loadinfo.net/ http://ajaxloadingimages.net/ AJAX Loading Images - Free Online GIF Icons Generator Select the..
파비콘 생성기 - ico파일 만들기 https://www.favicon-generator.org/ Favicon & App Icon Generator Upload an image (PNG to ICO, JPG to ICO, GIF to ICO) and convert it to a Windows favicon (.ico) and App Icons. Learn more about favicons. www.favicon-generator.org 위 사이트 링크에 가서 변환하면 된다.

728x90
반응형