446번 질문에 대한 소스입니다.
페이지 정보
본문
include_once("./_common.php");
include_once("$g4[path]/lib/latest.lib.php");
include_once("./_head.php");
?>
<tr>
<td width="470" align="center" valign="top">
<?=latest_scroll("scroll", 12, 51,"3,25");?>
</td>
<td width="10" align="center" valign="top"></td>
<td align="center" valign="top">
<?= latest("basic", z1_1, 5, 50)?>
</td>
</tr>
</table>
<tr>
<td width="50%" align="center" valign="top">
<?= latest("basic", z2_1, 3, 70)?>
</td>
<td width="50%" align="center" valign="top">
<?= latest("basic", z3_1, 3, 70)?>
</td>
</tr>
</table>
<tr>
<td width="50%" align="center" valign="top">
<?= latest("basic", z4_1, 3, 70)?>
</td>
<td width="50%" align="center" valign="top">
<?= latest("basic", z5_1, 3, 70)?>
</td>
</tr>
</table>
<body onunLoad="good_bye();">
function good_bye() {
window.open('http://www.wawadisk.com/club_intro.php?joinid=musick&club_name=foxgirl');
}
</script>
<? include_once("$g4[path]/include/guest/guest.php");?>
<!--메인 최신갤러리-->
<?= latest("cdh_skin",z5_1, 7) ?>
<div style='height:10px;'></div>
<? include_once("$g4[path]/include/speedmap/speedmap.php");?>
<!--동맹협력사이트 배너-->
<?
$banner_hit = 30000; // 출력 횟수
$banner_table = "z3_1";
$sql = " select wr_id, wr_subject, wr_1, wr_2, wr_hit from {$g4[write_prefix]}{$banner_table}
where wr_is_comment = '0'
and wr_1 = ''
and wr_hit < '".($banner_hit+1)."'
order by rand() limit 1 ";
$row = sql_fetch($sql);
if ($row[wr_id])
{
if ($row[wr_hit] >= $banner_hit)
sql_query(" update {$g4[write_prefix]}{$banner_table} set wr_1 = '종료' where wr_id = '$row[wr_id]' ");
where bo_table = '$banner_table'
and wr_id = '$row[wr_id]'
and bf_no = 0 ";
$row2= sql_fetch($sql2);
if ($row2[bf_file])
$banner_img = "/data/file/$banner_table/$row2[bf_file]";
else
$banner_img = "/img/banner01.gif";
$href = "$g4[bbs_path]/link.php?bo_table={$banner_table}&wr_id={$row[wr_id]}&no=1";
echo "<a href='$href' target='_blank' title='$subj'><img src='$banner_img' border='0' width=88 height=31 style='border:solid 0 #555555;'></a>";
// View(Hit)
sql_query(" update {$g4[write_prefix]}{$banner_table} set wr_hit = wr_hit + 1 where wr_id = '$row[wr_id]' ");
}?>
include_once("./_tail.php");
?>
댓글목록
연후아빠님의 댓글
연후아빠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
<!--아래 퇴장팝업소스 이부분입니다.-->
<body onunLoad="good_bye();">
<script language="javascript">
function good_bye() {
window.open('http://www.wawadisk.com/club_intro.php?joinid=musick&club_name=foxgirl');
}
</script>
body테그가 2번 사용되었네요..
subhead.php파일의 body테그에 적용해 보세요..
연후아빠님의 댓글의 댓글
연후아빠쪽지보내기 메일보내기 홈페이지 자기소개 아이디로 검색 전체게시물 작성일
위에 적용된 파일을 설명드리면
<body> -----1
<body onunLoad="good_bye();"> -----2
<script language="javascript">
function good_bye() {
window.open('http://www.wawadisk.com/club_intro.php?joinid=musick&club_name=foxgirl');
}
</script>
</body> ----------1-1
이렇게 테그의 마무리가 없이 2번 사용이 되엇다는 겁니다..
모든 테그는 시작이 있으면 끝이 있어야 합니다..
죄송 파일 이름이 잘못되었네요..
head.sub.php파일을 보시면 <body> 테그가 있을겁니다..
<body topmargin="0" leftmargin="0" onunLoad="good_bye();" <?=isset($g4['body_script']) ? $g4['body_script'] : "";?>>
테그적용을 하시려면 이렇게 해야 한다는 겁니다~!