묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.04.05 15:27
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 2
-
DeX™
2005.04.05 15:35
-
변우정
2005.04.05 18:40
스킨폴더안에 list_main.php 소스인데요 여기서 요청하신 자료로 수정해 봤는데 안되요ㅜㅡ
<?
$subject = str_replace(">","><font class=list_han>",$subject);
$name= str_replace(">","><font class=list_han>",$name);
/* Check New Comment <?=$comment_new?> */
$last_comment = mysql_fetch_array(mysql_query("select * from $t_comment"."_$id where parent='$data[no]' order by reg_date desc limit 1"));
$last_comment_time = $last_comment['reg_date'];
if(time()-$last_comment_time<60*60*6) $comment_new = "<font color=red size=2 style=\"cursor:hand\" title=\"".cut_str(stripslashes($last_comment['memo']),30)."\">*</font>";
elseif(time()-$last_comment_time<60*60*12) $comment_new = "<font color=blue size=2 style=\"cursor:hand\" title=\"".cut_str(stripslashes($last_comment['memo']),30)."\">*</font>";
elseif(time()-$last_comment_time<60*60*24) $comment_new = "<font color=black size=2 style=\"cursor:hand\" title=\"".cut_str(stripslashes($last_comment['memo']),30)."\">*</font>";
else $comment_new = "";
?>
<tr align=center class=zv3_listBox onMouseOver=this.style.backgroundColor='#FBFBFB' onMouseOut=this.style.backgroundColor=''>
<td class=list_eng><?=$number?></td>
<?
if(!$comment_num[0]) { ?>
<td align=left nowrap><?=$hide_cart_start?><input type=checkbox name=cart value="<?=$data[no]?>"><?=$hide_cart_end?> <?=$insert?><?=$icon?><?=$subject?> <font class=list_eng style=font-size:7pt><?=$comment_num?></font><?=$comment_new?></td>
<? }
else { ?>
<td align=left nowrap bgcolor='#cedbff'><?=$hide_cart_start?><input type=checkbox name=cart value="<?=$data[no]?>"><?=$hide_cart_end?> <?=$insert?><?=$icon?><?=$subject?> <font class=list_eng style=font-size:7pt><?=$comment_num?></font><?=$comment_new?></td>
<? }
?>
<td><nobr><?=$face_image?> <?=$name?></nobr></td>
<td nowrap class=list_eng><?=$date=date("m-d H:i",$data[reg_date])?></td>
<td nowrap class=list_eng><?=$hit?></td>
</tr>
<tr>
<td colspan=5 bgcolor=#F1F1F1 width=0 height=1 width=<?=$width?>></td></tr>
<?$coloring++;?>
-----------------------------------------
요 위에가 원본 소스입니다. 뭘 고쳐야 할지....ㅜㅡ 도와주세요 ㅜㅡ
아니면 코멘트를 달은 사람이 레벨별로 바뀌어도 되는뎅...
예를 들어서 레벨9인 사람이 코멘트를 달면 해당 게시물 바탕색이 검정색
레벨8인 사람이 코멘트 달면 해당 게시물 바탕색이 노란색 이런식으로...
어떻게 안될까요?회원 여러분들의 도움이 필요해요 >_<
정확한 소스를 보질 못해서리..
<?
if(!$comment_num[0]) {
$bgColor="";
}elseif($comment_num[0]>0) {
$bgColor="bgcolor=red";
}elseif($comment_num[0]>1) {
$bgColor="bgcolor=blue";
}
?>
<td align=left style='word-break:break-all;' <?=$bgColor?>> <?=$insert?><?=$icon?><?=$hide_category_start?>[<?=$category_name?>] <?=$hide_category_end?><?=$subject1?>[<FONT color=#0a05be><B>구분</B></FONT> : <?=$subject2?>/ <FONT color=#0a05be><B>납품번호</B></FONT> : <?=$subject3?>]<font class=zv3_comment><?=$comment_num?></font></td>
형태로 해주시면 될거 같은데요.