회원가입시 자기소개란 .. 줄바꿈가능하게 할려면? 정보
회원가입시 자기소개란 .. 줄바꿈가능하게 할려면?본문

위와같이 하고싶거든요...
어덯게 해야 하는지요?
댓글 전체
텍스트 안에 자동으로 줄바꿈(enter키외에 <BR>태그를 넣는것) 되게 한다는건
어려운 문제(텍스트 박스 크기에서 글자수를 체크해야 하기때문에..)네요^^
출력 글자를 고정해서 사용하세요.
예)회원 자기소개 보기에서 글자박스안에 고정하기
사용회원가입스킨/profile.skin.php 85라인쯤
<td height="100" valign="top"><?=$mb_profile?></td>
->
<td height="100" valign="top" style='width:95%; word-break:break-all ;'><?=$mb_profile?></td>
어려운 문제(텍스트 박스 크기에서 글자수를 체크해야 하기때문에..)네요^^
출력 글자를 고정해서 사용하세요.
예)회원 자기소개 보기에서 글자박스안에 고정하기
사용회원가입스킨/profile.skin.php 85라인쯤
<td height="100" valign="top"><?=$mb_profile?></td>
->
<td height="100" valign="top" style='width:95%; word-break:break-all ;'><?=$mb_profile?></td>
잘 됩니다. 혹시 이게 가능할까요?
사이드뷰에서 자기소개를 클릭하면 줄바꿈이 됐는데요..
게시판 하단에 자기소개내용을 출력할때요...
<?
$profile=get_member($view[mb_id], "mb_profile");
echo $profile['mb_profile']
?>
이렇게 하면 자기소개가 출력이 되는데..
이경우에도 출력된 자기소개가 일렬로 됩니다.
이경우에 줄바꿈은 어떻게 해야 할까요?
사이드뷰에서 자기소개를 클릭하면 줄바꿈이 됐는데요..
게시판 하단에 자기소개내용을 출력할때요...
<?
$profile=get_member($view[mb_id], "mb_profile");
echo $profile['mb_profile']
?>
이렇게 하면 자기소개가 출력이 되는데..
이경우에도 출력된 자기소개가 일렬로 됩니다.
이경우에 줄바꿈은 어떻게 해야 할까요?
테이블안에 넣어면....^^
<table width="500" border="0" cellspacing="0" cellpadding="0">
<td height="100" valign="top" style='width:95%; word-break:break-all ;'>
<?
$profile=get_member($view[mb_id], "mb_profile");
echo $profile['mb_profile']
?>
</td>
</table>
<table width="500" border="0" cellspacing="0" cellpadding="0">
<td height="100" valign="top" style='width:95%; word-break:break-all ;'>
<?
$profile=get_member($view[mb_id], "mb_profile");
echo $profile['mb_profile']
?>
</td>
</table>