현재 로그인한 사용자가 쓴글 게시글을 표기하려고한다.
그래서 변수를 id 로 만들고 게시글을 로드해본다
$id = $meber['mb_id'];
아래와 같이 사용하면 mb_id 가 작성한 유저인지 체크할수있다.
$id = $member['mb_id'];
$sq = "select * from g5_write_board where mb_id = '".$id."' ";
$result = sql_query($sq);
만약 본인이 다른 게시글에서 하고싶다면 아래를 수정해서 쓰면 된다.
$id = $member['mb_id']
$sq = "select * from [게시판_보드] where mb_id = '".$id."' ";
$result = sql_query($sq);
Reference
https://stackoverflow.com/questions/7537377/how-to-include-a-php-variable-inside-a-mysql-statement
그누보드 로그인 문제 (0) | 2022.09.28 |
---|---|
[그누보드] daum 주소 Api / 주소검색 오류 (0) | 2022.06.15 |
그누보드5 페이징번호 추가하는법 (0) | 2022.05.25 |
wr_datetime의 유효하지 못한 디폴트 값을 사용하셨습니다. (57) | 2022.05.11 |
html5 table row / column merge example code (0) | 2018.12.04 |
css transform 여러개 정의하기 , CSS transform multi property (0) | 2018.11.29 |