최근개시물클릭햇을때 다른화면으로넘어가는거좀 ㅠㅠ 정보
최근개시물클릭햇을때 다른화면으로넘어가는거좀 ㅠㅠ본문
댓글 전체

latest.skin.php 에서
제목 <A 태그에서 target="_top" 또 target="_parent"로 해 주세요.
제목 <A 태그에서 target="_top" 또 target="_parent"로 해 주세요.
<?
if (!defined("_GNUBOARD_")) exit; // °³º° ÆäÀÌÁö Á¢±Ù ºÒ°¡
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="89" valign=top>
<table border=0 cellpadding=0 cellspacing=0 width="100%">
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align=center width="100%">
<table border=0 cellpadding=0 cellspacing=0 width=95% style="table-layout:fixed">
<tr height=20>
<td nowrap><img src='<?=$latest_skin_path?>/img/dot_icon.gif' width="8" height="5" align=absmiddle>
<?
//³¯Â¥Ç¥½Ã
$date1 = substr($list[$i][datetime],0,10); //³¯Â¥Ç¥½ÃÇü½Äº¯°æ
$date = explode("-", $date1);
$year = $date[0];
$month = $date[1];
$day = $date[2];
$latest_date = $year."-".$month."-".$day."";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
echo "<strong>{$list[$i]['subject']}</strong>";
else
echo "{$list[$i]['subject']}";
echo "</a>";
if ($list[$i]['comment_cnt'])
echo " <a href=\"{$list[$i]['comment_href']}\">{$list[$i]['comment_cnt']}</a>";
echo " " . $list[$i]['icon_new'];
echo "</td><td width=10></td><td width=70>";
echo "<font color=#346767>[{$latest_date}]</font></td>";
?></td></tr>
</table></td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=4 align=center height=50 width="100%"><font color=#6A6A6A>°Ô½Ã¹°ÀÌ ¾ø½À´Ï´Ù.</a></td></tr><? } ?>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
ㅠㅠ 제가 테크나 이런거가완저 초짜라서리 ㅠㅠ 엑스엠엘님이 말슴하신대로 php파일은
불러왓는대 어디를 수정해야하는지 도무지몰것어요 ㅠㅠ 초보라서리 ㅠㅠ
태그파일을 불러왓습니다 번거롭더라두 좀알려주새요 ㅠㅠ
if (!defined("_GNUBOARD_")) exit; // °³º° ÆäÀÌÁö Á¢±Ù ºÒ°¡
?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="89" valign=top>
<table border=0 cellpadding=0 cellspacing=0 width="100%">
<? for ($i=0; $i<count($list); $i++) { ?>
<tr>
<td align=center width="100%">
<table border=0 cellpadding=0 cellspacing=0 width=95% style="table-layout:fixed">
<tr height=20>
<td nowrap><img src='<?=$latest_skin_path?>/img/dot_icon.gif' width="8" height="5" align=absmiddle>
<?
//³¯Â¥Ç¥½Ã
$date1 = substr($list[$i][datetime],0,10); //³¯Â¥Ç¥½ÃÇü½Äº¯°æ
$date = explode("-", $date1);
$year = $date[0];
$month = $date[1];
$day = $date[2];
$latest_date = $year."-".$month."-".$day."";
echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
echo "<strong>{$list[$i]['subject']}</strong>";
else
echo "{$list[$i]['subject']}";
echo "</a>";
if ($list[$i]['comment_cnt'])
echo " <a href=\"{$list[$i]['comment_href']}\">{$list[$i]['comment_cnt']}</a>";
echo " " . $list[$i]['icon_new'];
echo "</td><td width=10></td><td width=70>";
echo "<font color=#346767>[{$latest_date}]</font></td>";
?></td></tr>
</table></td>
</tr>
<? } ?>
<? if (count($list) == 0) { ?><tr><td colspan=4 align=center height=50 width="100%"><font color=#6A6A6A>°Ô½Ã¹°ÀÌ ¾ø½À´Ï´Ù.</a></td></tr><? } ?>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
ㅠㅠ 제가 테크나 이런거가완저 초짜라서리 ㅠㅠ 엑스엠엘님이 말슴하신대로 php파일은
불러왓는대 어디를 수정해야하는지 도무지몰것어요 ㅠㅠ 초보라서리 ㅠㅠ
태그파일을 불러왓습니다 번거롭더라두 좀알려주새요 ㅠㅠ

echo "<a href='{$list[$i]['href']}'>";
if ($list[$i]['is_notice'])
===>
echo "<a href='{$list[$i]['href']}' target='_top' >";
if ($list[$i]['is_notice'])
if ($list[$i]['is_notice'])
===>
echo "<a href='{$list[$i]['href']}' target='_top' >";
if ($list[$i]['is_notice'])

^^;;