문제가 생겨서 그러는데 아시는고수님,,,, 정보
문제가 생겨서 그러는데 아시는고수님,,,,
본문
select * from g4_write_B13 where wr_is_comment = 0 order by wr_num limit 0, 4
1146 : Table 'min813_min813.g4_write_B13' doesn't exist
error file : /index.php
이런 문제가 생겨서 그러는데 이유를 모르겟네요,,,,
오류 사이트 http://donfel.com/ 고수님들 답변 부탁드립니다...
1146 : Table 'min813_min813.g4_write_B13' doesn't exist
error file : /index.php
이런 문제가 생겨서 그러는데 이유를 모르겟네요,,,,
오류 사이트 http://donfel.com/ 고수님들 답변 부탁드립니다...
댓글 전체
select * from g4_write_B13 where wr_is_comment = 0 order by wr_n..........를
select * from 'g4_write_B13' where wr_is_comment = 0 order by .......또는
$board = "g4_write_B13";
select * from $board where wr_is_comment = 0 order by wr_num limit 0, 4 등으로 테스트 해보세요.
select * from 'g4_write_B13' where wr_is_comment = 0 order by .......또는
$board = "g4_write_B13";
select * from $board where wr_is_comment = 0 order by wr_num limit 0, 4 등으로 테스트 해보세요.