묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.06.21 11:18
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 2
-
조민
2005.06.21 17:30
-
박명규
2005.06.21 18:56
<table border=0 cellspacing=0 cellpadding=0 width=<?=$width?> height=1>
<tr>
<tr><td colspan=2 height=1 bgcolor=#D4773F></td></tr>
<tr><td height=5 colspan=2></td></tr>
<tr>
<tr><td colspan=2 height=1 bgcolor=#EEEEEE></td></tr>
<tr><td height=3 colspan=2></td></tr>
<tr>
<tr>
<td height=25 bgcolor=#ffffff> <img src=<?=$dir?>/images/r_subject.gif> <?=$subject?></td>
<td align=right bgcolor=#ffffff valign=middle>
<?=$a_modify?><img src=<?=$dir?>/i_modify.gif border=0 align=absmiddle></a>
</td>
</tr>
<tr><td bgcolor=#ffffff height=4 colspan=2><img src=images/t.gif height=1></td></tr>
<tr><td bgcolor=#EEEEEE height=1 colspan=2><img src=images/t.gif height=1></td></tr>
</table>
<table border=0 cellspacing=0 cellpadding=0 width=<?=$width?>>
<tr>
<td style='word-break:break-all;padding:10px;' bgcolor=#ffffff height=100 valign=top>
<span style=line-height:160%>
<div align="center"><?=$upload_image1?>
<br>
<?=$upload_image2?></div>
<br>
<?=$memo?>
<p><br>
<div align=right class=ver7 style='color:#A4A4A4'><?=$date?> , HIT: <?=$hit?></div>
</span>
</td>
</tr>
</table>
<!-- 간단한 답글 시작하는 부분 -->
<?=$hide_comment_start?>
<table border=0 cellspacing=0 cellpadding=0 width=<?=$width?>>
<?=$hide_comment_end?>
view .php 파일내용이 이래잇는데 위수분에 body까지 적어주고 html부분은 하단에 끼워넣읐는데도 안되요
view.php파일을 보시면
이미지를 클릭시 새창으로 띄우는 파일 이름이 보일겁니다..
그파일을 텍스트 에이터로 여시고
아래와 같은 소스로 돼 있는지 확인해 보시길...
*만약에 아래와 같은 소스가 없다면
그파일에 복사한뒤 붙히기하세요,...
------------------------------------------------------------------------
<html>
<head>
<title><?=$file?></title>
<meta http-equiv=Content-Type content=text/html; charset=EUC-KR>
</head>
<script LANGUAGE=JavaScript>
var isNav4, isIE4;
var windowX, windowY;
var bLargeImage = 0;
var x,y;
if (parseInt(navigator.appVersion.charAt(0)) >= 4)
{
isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}
function fitWindowSize()
{
if (isNav4) {
window.innerWidth = document.layers[0].document.images[0].width;
window.innerHeight = document.layers[0].document.images[0].height;
}
if (isIE4) {
window.resizeTo(500, 500);
width = 500 - (document.body.clientWidth - document.images[0].width);
height = 500 - (document.body.clientHeight - document.images[0].height)
windowX = (window.screen.width-width)/2;
windowY = (window.screen.height-height)/2;
if(width>screen.width){
width = screen.width;
windowX = 0;
bLargeImage = 1;
}
if(height>screen.height-50){
height = screen.height-50;
windowY = 0;
bLargeImage = 1;
}
x = width/2;
y = height/2;
window.moveTo(windowX,windowY);
window.resizeTo(width, height);
}
}
function move()
{
if(bLargeImage)
window.scroll(window.event.clientX - 50,window.event.clientY -50);
}
</script>
<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'
onLoad="fitWindowSize()" onmousemove="move();" >
<A href=# onclick=window.close()><img src=../../<?=$file?> border=0></a>
</body>
</html>