묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
PHP관련질문입니다. 최근게시물에 관해서....
2002.06.20 20:56
PHP작업하던중 공지사항의 제목을 불러오는 소스를 제작중입니다.
<?
include "db.php";
$sql = " select * from $notice_table where notice_data=0 order by notice_id desc limit 0, 5";
$result = mysql_query($sql);
if(mysql_num_rows($result) > 0) :
?>
<table width=260 border=0 cellpadding=2 cellspacing=0 class=st_border1>
<tr>
<th colspan=2>
<img src='./notice.gif' border=0></th>
</tr>
<?
$bgcolor = #ffffff;
while($row=mysql_fetch_array($result)) :
$bgcolor = ($bgcolor==#ffffff) ? "list" : "title";
echo "
<tr class=#ffffff>
<td width=10 valign=top><img src='./arr.gif' border=0></td>
<td width=260 class=st_lead120><a href='notice.php?ag_id=$row[notice_id]'>$row[notice_title]</a></td>
</tr>";
endwhile;
?>
</table>
<? endif; ?>
대충 공지사항보드의 제목을 5개 불러오는건데, 제목이 길면 다음줄로 제목이 늘어나서 지저분하게 보이는데요.
불러올때 제목 글자수를 제한하는 방법은 없나요?
<?
include "db.php";
$sql = " select * from $notice_table where notice_data=0 order by notice_id desc limit 0, 5";
$result = mysql_query($sql);
if(mysql_num_rows($result) > 0) :
?>
<table width=260 border=0 cellpadding=2 cellspacing=0 class=st_border1>
<tr>
<th colspan=2>
<img src='./notice.gif' border=0></th>
</tr>
<?
$bgcolor = #ffffff;
while($row=mysql_fetch_array($result)) :
$bgcolor = ($bgcolor==#ffffff) ? "list" : "title";
echo "
<tr class=#ffffff>
<td width=10 valign=top><img src='./arr.gif' border=0></td>
<td width=260 class=st_lead120><a href='notice.php?ag_id=$row[notice_id]'>$row[notice_title]</a></td>
</tr>";
endwhile;
?>
</table>
<? endif; ?>
대충 공지사항보드의 제목을 5개 불러오는건데, 제목이 길면 다음줄로 제목이 늘어나서 지저분하게 보이는데요.
불러올때 제목 글자수를 제한하는 방법은 없나요?
5개를 불러들이고 25글자를 출력하고자 하는곳에 넣는 소스라고 제로보드 설치메뉴얼에 나와있네요
님이 올린소스랑은 좀다른가요? 참 최근게시물 추출하는것에 대해서는 유용한팁공유게시판에 많이 나와있어요
웹스터디보다는 제로보드 질문과 답변게시판에 올리는게 더 빠른답변을 받는데 도움이 되리라 봐요^^