Snippet

List of all locales

List of all locales Locale Language Country af_NA Afrikaans Namibia af_ZA Afrikaans South Africa ak Akan ak_GH Akan Ghana sq_AL Albanian Albania sq_XK Albanian Kosovo sq_MK Albanian Macedonia am_ET Amharic …

List of all locales Read More »

nginx에서 php 확장자 제거하기

nginx에서 php 확장자 제거하기 Edit /etc/nginx/sites-available/default.conf server { … location / { try_files $uri $uri/ $uri.html $uri.php$is_args$args; } location ~ \.php$ { try_files $uri =404; } … } Reference https://stackoverflow.com/questions/21911297/how-to-remove-both-php-and-html-extensions-from-url-using-nginx …

nginx에서 php 확장자 제거하기 Read More »

자바스크립트에서 체크박스 Array 값 사용하기

자바스크립트에서 체크박스 Array 값 사용하기 Client Side <form method="get"> <input type="checkbox" name="options[]" value="1" /> <input type="checkbox" name="options[]" value="2" /> <input type="checkbox" name="options[]" value="3" /> <input type="submit" value="Go!" /> </form> function …

자바스크립트에서 체크박스 Array 값 사용하기 Read More »

Scroll to Top