작업상 회원가입 약관에 표를 넣어야해서 작업하게 되었습니다.
혹시 필요하시다면 공유하고자 올립니다.
관리자화면에서 약관 부분에 html로 작성된 소스를 넣으시면 이렇게,


s1.gif 



회원가입시 약관에 html로 작성된 화면이 보이게 됩니다. 이렇게..


s2.gif 

회원가입스킨 register.skin.php 을 열어
회원가입 약관부분 42번째줄------------------

원소스 ----------------------------------------------------
<?=get_text($config[cf_stipulation])?>

수정소스1 -----------------------------------------------------
<? echo stripslashes($config[cf_stipulation]) ?>

로 바꿔주시면 됩니다. 하지만 이럴경우 약관이 길면 페이지를 모두 차지하게 됩니다.
그래서 textarea를 대신할  맞는 박스를 만들어 줍니다.

수정소스2-----------------------------------------------------
<div id="memberagree"><? echo stripslashes($config[cf_stipulation]) ?></div>

페이지 상단 또는 연결된 css파일에 추가해서 넣어주시면 됩니다.
<style>
#memberagree{ 
    width:100%; height:170px;
    color:#000000; 
    border-top:#CCCCCC solid 1px;
    border-right:#CCCCCC solid 0px;
    border-bottom:#dddddd solid 0px;
    border-left:#dddddd solid 1px;
    overflow-y:scroll;
    overflow-x:no;
    text-align:left;
    margin-top:10px;}
</style>

 

 

 

http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=20535&sca=&sfl=wr_subject||wr_content&stx=cf_stipulation&sop=and