latest.skin.php 소스부분인데 도움주실수 있으신분~
본문
latest.skin.php 소스입니다.
최신글을 나타내는 게시판의 wr_10 에 게시글 제목을 넣고
최신글제목 값과 wr_10 를 비교하여 같은 제목일 경우만 나타내는 소스인데
작동이 되지를 않네요..
초보입니다.. 무슨 실수가 있을까요?
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($list[$i]['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height);
$s1 = $list[$i]['subject'];
$s2 = $list[$i]['wr_10'];
if ($s1 != $s2) continue;
?>
<a href="<?php echo $list[$i]['href'];?>">
<img src="<?php echo $thumb['src']?>">
</a>
<?php } ?>
!-->
답변 2
latest.lib.php를 수정한게 없다면 불러오지 못하는 이유는 없습니다
if
(
$s1
!=
$s2
)
continue
; 바로 위에 넣어서 어떻게 나오는지 확인 해보세요
echo "<br>$s1 // $s2";
<? for ($i=0; $i<count($list); $i++) { $thumb = get_list_thumbnail($list[$i]['bo_table'], $list[$i]['wr_id'], $thumb_width, $thumb_height); if($list[$i]['subject']==$list[$i]['wr_10']) { ?> <a href="<?=$list[$i]['href'];?>"> <img src="<?=$thumb['src']?>"> </a> <? } ?>
이렇게 해보세요
답변을 작성하시기 전에 로그인 해주세요.