m

최신글에서 이미지문제

사용자 지정 1.jpg
아래는 envy 님의 news_2 를 쬐금 개조한 것의 latest.skin.php입니다.
이중에서 이미지가 없을 경우에 그 이미지에 해당하는 (<td>이미지</td>)를 아예 뜨지않게 하고 그대신 오른쪽의 (<td>내용</td>) 의 내용을 더 길게 하려면 어떻게 해야하는가요?
** 그림에서 이미지가 없을 경우에는 A가 차지하는 부분을 완전히 없애고 B로 완전히 대체하고 싶다는 뜻입니다.


<?
$image_height = 80; // 높이
$image_width = 100; // 너비
?>

<table width=100% cellpadding=0 cellspacing=0 border=0>
<? for ($i=0; $i<count($list); $i++) { ?>
<? if ($i==0) { ?>
<tr>
<td>
<table cellpadding=0 cellspacing=3 border=0>
<tr>
<td width="200" height="50" valign="middle"><p><img src='<?=$list[$i][file_image1]?>' width='<?=$image_width?>' height='<?=$image_height?>' border=0 align=left></p></td>
<td width="80%" height="30" valign="top"><span style='font-size:11'><?=$list[$i][date]?></span> <a href='<?="./?doc=bbs/gnuboard.php&bo_table=$bo_table&wr_id={$list[$i][wr_id]}"?>'><span class=subject><b><?=cut_str($list[$i][subject],50,"...");?></b></span></a> <span style='font-size:8pt;'><?=$list[$i][commentcnt]?></span> <?=$list[$i][icon_new]?><div align="justify" style="margin-right:1; margin-left:1;"><?=cut_str($list[$i][wr_content],200,"…");?></div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" height="1" colspan="2">
<table width=100% cellpadding=0 cellspacing=3 border=0>
<tr>
<td width="100%" height="1" background='./<?=$latest_skin?>/line_width.gif'></td>
</tr>
</table>
</td>
</tr>
<!--일반게시물-->
<? } else { ?>
<tr>
<td>
<table cellpadding=0 cellspacing=3 border=0>
<tr>
<td width="200" height="50" valign="middle"><p><img src='<?=$list[$i][file_image1]?>' width='<?=$image_width?>' height='<?=$image_height?>' border=0 align=left></p></td>
<td width="80%" height="30" valign="top"><span style='font-size:11'><?=$list[$i][date]?></span> <a href='<?="./?doc=bbs/gnuboard.php&bo_table=$bo_table&wr_id={$list[$i][wr_id]}"?>'><span class=subject><b><?=cut_str($list[$i][subject],50,"...");?></b></span></a> <span style='font-size:8pt;'><?=$list[$i][commentcnt]?></span> <?=$list[$i][icon_new]?><div align="justify" style="margin-right:1; margin-left:1;"><?=cut_str($list[$i][wr_content],200,"…");?></div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" height="1" colspan="2">
<table width=100% cellpadding=0 cellspacing=0 border=0>
<tr>
<td width="100%" height="1" background='./<?=$latest_skin?>/line_width.gif'></td>
</tr>
</table>
</td>
</tr>
<? } ?>
<? } ?>
<? if (count($list) == 0) { echo "<tr><td colspan=3 align=center height=25>자료가 없습니다.</td></tr>"; } ?>
<tr>
<td width="100%" height="5" colspan="2"></td>
</tr>
</table>

첨부파일

사용자 지정 1.jpg (30 KB)
2회 2004-05-20 21:04
|

댓글 3개

도상훈님 감사합니다.
스킨자료실에 올려놨습니다.
감사합니다...^-^
아주 잘됩니다.
이미지 출력하는 부분에 if문을 써서 사용하시면 됩니다...

<? if (!file_exists($list[$i][file_image1])) { ?>
<table cellpadding=1 cellspacing=3 border=0>
<tr>
<td width="80%" height="30" valign="top"> <a href='<?="./?doc=bbs/gnuboard.php&bo_table=$bo_table&wr_id={$list[$i][wr_id]}"?>'><span class=subject><b><?=cut_str($list[$i][subject],50,"...");?></b></span></a><span style='font-size:10'><?=$list[$i][date]?></span> <span style='font-size:8pt;'><?=$list[$i][commentcnt]?></span> <?=$list[$i][icon_new]?><div align="justify" style="margin-right:1; margin-left:1;"><?=nl2br(stripslashes(cut_str($list[$i][wr_content], 100, '…' )))?></div></td>
</tr>
</table>
<? }else{ ?>
<table cellpadding=1 cellspacing=3 border=0>
<tr>
<td width="200" height="50" valign="middle" bgcolor="#C1C1C1"><p><img src='<?=$list[$i][file_image1]?>' width='<?=$image_width?>' height='<?=$image_height?>' border=0 align=left></p></td>
<td width="80%" height="30" valign="top"> <a href='<?="./?doc=bbs/gnuboard.php&bo_table=$bo_table&wr_id={$list[$i][wr_id]}"?>'><span class=subject><b><?=cut_str($list[$i][subject],50,"...");?></b></span></a><span style='font-size:10'><?=$list[$i][date]?></span> <span style='font-size:8pt;'><?=$list[$i][commentcnt]?></span> <?=$list[$i][icon_new]?><div align="justify" style="margin-right:1; margin-left:1;"><?=nl2br(stripslashes(cut_str($list[$i][wr_content], 100, '…' )))?></div></td>
</tr>
</table>
</td>
</tr>
<?} ?>

^^ 이해가 되셨는지요?
그럼 건강하세요
댓글을 작성하시려면 로그인이 필요합니다. 로그인

그누3질답

+
제목 글쓴이 날짜 조회
21년 전 조회 312
21년 전 조회 439
21년 전 조회 408
21년 전 조회 567
21년 전 조회 516
21년 전 조회 457
21년 전 조회 537
21년 전 조회 431
21년 전 조회 429
21년 전 조회 472
21년 전 조회 380
21년 전 조회 343
21년 전 조회 335
21년 전 조회 360
21년 전 조회 319
21년 전 조회 284
21년 전 조회 485
21년 전 조회 639
21년 전 조회 437
21년 전 조회 680
🐛 버그신고