포인트관리에서 홈페이지(mb_homepage)에 "내부" 입력된 회원 제외시키는 방법좀 알려주세요
본문
관리자페이지에서 포인트관리에가면 포인트 목록이 뜨는데요
여기서 홈페이지(mb_homepage)에 "내부" 입력된 회원은 목록에서 없애고 싶거든요....
이렇게 했더니 그냥 전체 내용이 없네요...ㅜㅜ
[ 9번 줄 ]
$sql_search = " where (1) and mb_homepage<> '내부'";
[ 80번 줄 ]
$row2 = sql_fetch(" select sum(po_point) as sum_point from {$g5['point_table']} where mb_homepage<> ''내부");
답변 1
$row2 = sql_fetch(" select sum(po_point) as sum_point from {$g5['point_table']} where mb_homepage<> '내부' ");
80번째줄 쿼리에서 따옴표가 잘못된것 같네요.
답변을 작성하시기 전에 로그인 해주세요.