2017. 6. 17. 06:38ㆍWork/LAPM
https://phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=351586&sca=&sfl=wr_subject%7C%7Cwr_content&stx=%BC%BC%BC%C7&sop=and :) php.ini 권한 해줘야 세션이 다른 브라우저에서도 연동된다
https://zetawiki.com/wiki/PHP_세션_로그인_구현 :) php 세션
세션 사용
---------------------
session_start(); 세션 시작
$_SESSION['user_id'] = 'guest'; 세션 설정
unset( $_SESSION['세션변수명'] ); 특정 세션 삭제
session_destroy(); 전체 세션 삭제
---------------------
http://delirussum.tistory.com/entry/MY-SQL-mysqlfetchrow함수와-mysqlfetcharray함수의-차이점 :) fetch row
http://88240.tistory.com/91 :) fetch row
ALTER TABLE test_table AUTO_INCREMENT=1 -> 초기화
http://anisotropic.jinbo.net/blog/archives/96 gmail smtp
https://stackoverflow.com/questions/10648984/php-sessions-that-have-already-been-started :)
Notice: A session had already been started - ignoring session_start() 시에
mysql 원하는 테이블 삭제
--------------------
- delete from student where name like '고길동';
Mysql 데이터
백업 (Export)
복구(Import)
warning mysqli_fetch_array() expects parameter 1 to be mysqli_result boolean given 뜨면 아래처럼 에러 코드를 봐보자 (대부분 mysql 연결 실패)
$result = mysqli_query($conn, $query) or die(mysqli_error($conn));
에러1 : Call to undefined function mb_substr() in ~~ 물리적인 주소 에러
에러2 : The mbstring extension is missing. Please check your PHP configuration.
이것은 php-mbstring 모듈을 설치하면 해결 됩니다.
yum install php-mbstring -y
GD 라이브러리 설치
http://zetawiki.com/wiki/CentOS_GD라이브러리_설치
image GD 처리
http://www.dreamy.pe.kr/zbxe/CodeClip/165507
https://webtechball.wordpress.com/2015/03/15/how-to-upload-and-resize-an-image-through-gd-php/
javascript iframe 변경
<input oninput="linkfun(this.value)" onkeyup="document.getElementById('link').innerHTML=this.value" class="form-control" type="text" name="user_link" placeholder="Enter Link" value="<?php echo $userlink; ?>"/>
<p id="link"></p>
<iframe width="300" height="300" id="linkframe" name="linkframe" src="" frameborder="0" allowfullscreen></iframe>
<script type="text/javascript">
function linkfun(value){
document.getElementById('linkframe').src = value;
}
</script>