Web 7

10대/20대/30대 구하는 코드 자동화

/** * input: 10, 20, 30, 40, 50, 60 * output: 1999-01-01~1999-12-31 ...등 * 10대, 20대, 30대, 40대, 50대, 60대에 해당하는 연도를 반환합니다. * @param $th * @return array */ public function ages($th) { $this_year = date('Y'); $start_date = date(($this_year - $th).'-01-01'); $end_date = date(($start_date - 9).'-12-31'); return array( 'start_date' => $start_date, 'end_date' => $end_date ); }$th 로 10, 20, 30등 원하는 연령대 (..

Web/PHP 2019.01.15

[에러노트] button onclick시 form의 onsubmit이 실행되는 현상

Welcome! Let me introduce yourself Name Password Write your story! TITLE CONTEXT Cancel [에러상황!!!!]=> cancel button을 클릭하면 form이 제출되는 현상이 발생함. 왜그럴까 하고 봤더니, onsubmit의 제일 밑에 기본이 되는 함수가 onClick 이라고 StackOverflow에 쓰여있었음!! 그래서 button 의 onclick이 같이 실행되는 현상이 발생함. 실제로 누르지도 않았는데!! 그래서 해결하기 위해 input으로 바꾸니 잘됨! 아래는 바꾼 코드! Welcome! Let me introduce yourself Name Password Write your story! TITLE CONTEXT input t..

Web/Html 2017.07.20