본문 바로가기

모바일개발(Mobile Dev)/서버개발8

datepicker-jquery-ui written by https://www.script-tutorials.com/datepicker-jquery-ui/ Full calendar datepicker. If you are not familiar with jquery ui, and you are looking for a way to add a datepicker to your website, it would be superfluous to read this article, where we will tell how to add and configure datepicker. It’s easy enough if you are already familiar with this library, but it will be very useful for be.. 2016. 1. 31.
PHP Calendar wrtten by https://www.phpjabbers.com/how-to-make-a-php-calendar-php26-2.html#sectionComments In this tutorial you will learn how to build your own web based calendar using PHP. This calendar is made from two parts. On top there are the links to the previous and the next month, and below them is the calendar itself. It will show the selected month name with the year following and the days of the .. 2016. 1. 28.
PHP Arrays Handle written by http://www.informit.com/articles/article.aspx?p=31840&seqNum=4Multidimensional ArraysArrays do not have to be a simple list of keys and values—each location in the array can hold another array. This way, we can create a two-dimensional array. You can think of a two dimensional array as a matrix, or grid, with width and height or rows and columns.If we want to store more than one piece.. 2016. 1. 22.
about password written by http://www.cafewebmaster.com/check-password-strength-safety-php-and-regex Check password strength / safety with PHP and RegexSubmitted by n8coder on Wed, 05/13/2009 - 14:51in password pcre php regex regexp regular expressions securitytutorialPassword Validation with PHP and Regular ExpressionsWhat is a good password? Your birthday, favorite star or first school, car, ...? None of them.. 2016. 1. 22.
PHP remember me script written by http://www.downwithdesign.com/web-development-tutorials/adding-remember-feature-php-login-script/ Adding a remember me feature to your php login script10th Sep 12I was recently browsing the web looking for an easily reproducible php remember me code snippet.By this I meant I wanted to be able to auto fill the text input on my login form if a user had checked a remember me checkbox. I .. 2016. 1. 15.
facebook : 앱 구성에 허용되지 않는 URL 앱 구성에 허용되지 않는 URL입니다 이런 메세지 뜰때 해결 방법페이스북 api키 연동으로 간편 로그인 설정시 위와 같은 에러가 나면 해결 방법 사진과 같이 my app 에서 설정(setting) 을 누르고 아래 부분에서 플랫폼 추가 를 누르면 웹사이트 넣는 부분이 나온다 거기에 왭사이트 넣으면 에러 메세지 안뜹니다. 2016. 1. 13.
JavaScript facebook 연동 written by http://whitememo.tistory.com/196 여기서는 JavaScript로 된 페이스북 API를 사용하여사이트의 로그인을 페이스북 계정으로 할수 있도록알아보겠습니다. 홈페이지에서 페이스북을 연동하려면 먼저 페북 앱을 등록 해주어야 합니다.페이스북 개발자 홈페이지에서 상단의 앱 카테고리를 클릭하여앱을 등록해 주고, 진행합니다.http://developers.facebook.com/?ref=pf 다른 것은 필요없이 빨간색 네모로 체크된 부분만 입력해주면 됩니다.사이트 URL 같은 경우 IP와 도메인 모두 가능하니 자유롭게 사용하시면 됩니다. 이제 앱등록이 완료 됬다고 가정하고 다음으로는 페북 로그인 버튼이 들어가는 페이지를 만들어 보겠습니다.여기서는 PHP 파일로 다루지만 .. 2016. 1. 13.
php random string function PHP mt_rand 랜덤 숫자 문자 생성Skip to end of bannerGo to start of bannerSkip to end of metadataCreated by Jinam Kang, last modified on Sep 18, 2013Go to start of metadata랜덤 문자열 생성 함수generateRenStrfunction generateRenStr($length) { $characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; $rendom_str = ""; $loopNum = $length; while ($loopNum--) { $rendom_str .= $characters[mt_rand(.. 2016. 1. 13.