본문 바로가기
반응형

Programming85

javascript로 14세 미만 체크하기 javascript에서 14세 미만 체크하기 function checkAge(birth) { var date = new Date(); var year = date.getFullYear(); var month = (date.getMonth() + 1); var day = date.getDate(); var result = false; if (month < 10) month = '0' + month; if (day < 10) day = '0' + day; var monthDay = month + '' + day; birth = birth.replace('-', '').replace('-', ''); var birthdayy = birth.substr(0, 4); var birthdaymd = birth.su.. 2022. 10. 28.
[ASP] ABCUpload4 컴포넌트 등록하기. ABCUpload4.XForm 코드가 포함되어 있는 소스에서 500 - Internal server error. 깜빡하고 컴포넌트 등록을 하지 않았다. 1. 구글링을 통해 ABCUpload4 무료버전을 다운로드 받는다. - 검색하면 나오긴한다 2. 압축풀고 DLL 등록하기 cmd 창을 관리자 권한으로 열어야한다.해당 디렉토리에 가서... regsvr32 ABCUpload4.dll 하면 끝 3. 혹시 잘했는데 안되면 애플리케이션 풀 > 애플리케이션 풀 기본값 설정에서 32비트 애플리케이션 사용을 True로 설정해야한다. 2022. 10. 27.
[전자정부표준프레임워크] 9. 모바일 표준프레임워크 실행환경 모바일웹 1. 개요 jQueryMobile https://demos.jquerymobile.com/1.4.5/ jQuery Mobile Demos Demos jQuery Mobile is a touch-optimized HTML5 UI framework designed to make responsive web sites and apps that are accessible on all smartphone, tablet and desktop devices. New to jQuery Mobile? Get started by reading this introduction. For technical info demos.jquerymobile.com Device API 폰갭(Cordova) https://cordova.ap.. 2022. 10. 27.
우분투 + Apache2 + PHP + Mariadb + CIBOARD 설치 1. 아파치 설치 $ sudo apt install apache2 2. php 설치 $ sudo apt install php $ sudo apt install php-mysql php-gd php-xml php-curl 3. mariadb 설치 $ sudo apt install mariadb-server 4. CIBOARD 다운로드 http://www.ciboard.co.kr/b/lite Lite 다운로드 - 씨아이보드 :: 코드이그나이터 게시판 오픈소스 코드이그나이터(Codeigniter) 기반 공개형 PHP 무료게시판, PHP Framework, MVC Framework, 씨아이보드, CIBoard, PHP 7 지원 www.ciboard.co.kr $ sudo unzip 압축파일.zip $ sudo .. 2022. 10. 25.
[코드이그나이터] 2. codeigniter shield 프레임워크 설치하기 Codeigniter용 인증 권한 부여 프레임워크 CodeIgniter Shield 1. codeigniter 기본 설정 .env 파일을 아직 손대지 않은 가정하에 설정을 설명한다. .env 파일에서 아래 APP, DATABASE, SECURITY 부분 주석을 해제하고, DATABASE 부분은 본인 상황에 맞게 작성한다. #-------------------------------------------------------------------- # ENVIRONMENT #-------------------------------------------------------------------- CI_ENVIRONMENT = development #---------------------------------.. 2022. 10. 24.
2021년 PHP 개발자 생태계 jetbrains에 게시되어있는 2021년 PHP 개발자 생태계 https://www.jetbrains.com/ko-kr/lp/devecosystem-2021/php/ The State of Developer Ecosystem in 2021 Infographic The State of Developer Ecosystem 2021 is a detailed report about the programming community, which covers the latest trends in languages, tools, technologies, and lifestyles of developers. www.jetbrains.com 그 중 흥미로운 것은.. 1. PHP가 가장 인기 높은 나라는 프랑스 2. 주로 .. 2022. 10. 24.
728x90