게시판 불러오는 sql 부분 질문드려요
본문
https://demos.9lessons.info/loadmore.php
구글링하여 위에 데모버전을 다운받아서 그누보드에 적용해보려 이것저것 해봐도 되지않아서요..!
아래 config.php 부분은 root 계정을 적는걸로 알고있는데요..!
post['lastmsg'] 부터 sql과 $msg_id=$row['ms_gid']; 이런 부분을 도저히
어떻게 적용해야할지 몰라서요..
<?php
include("config.php");
if(isSet($_POST['lastmsg']))
{
$lastmsg=$_POST['lastmsg'];
$result=mysql_query("select * from messages where msg_id<'$lastmsg' order by msg_id desc limit 9");
$count=mysql_num_rows($result);
while($row=mysql_fetch_array($result))
{
$msg_id=$row['ms_gid'];
$message=$row['message'];
?>
<li>
<?php echo $message; ?>
</li>
<?php
}
?>
<div id="more<?php echo $msg_id; ?>" class="morebox">
<a href="#" id="<?php echo $msg_id; ?>" class="more">more</a>
</div>
<?php
}
?>
!-->
답변 1
$msg_id=$row['msg_id'];
우선 오타가 있구요
젤 마지막 메세지 번호를 넘겨 받아서,
그 메세지보다 작은 9개를 가져오는 겁니다.
more 클릭 시 id값 넘기는 부분을 확인해보세요.
답변을 작성하시기 전에 로그인 해주세요.