코타군님 다시 질문드려요 정보
코타군님 다시 질문드려요본문
죄송한데요.코타군님 한번만 더 봐주세요
with (document.fwrite)
{
if (typeof(ca_name) != "undefined")
if (w.value == "u")
ca_name.value = "<?=$write[ca_name]?>";
}
function html_auto_br(obj)
{
if (obj.checked) {
result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
if (result)
obj.value = "html2";
else
obj.value = "html1";
}
else
obj.value = "";
}
function fwrite_submit(f)
{
<?
if ($g4[https_url])
echo "f.action = '$g4[https_url]/$g4[bbs]/write_update.php';";
else
echo "f.action = './write_update.php';";
?>
return true;
<?
if ($is_dhtml_editor) echo cheditor3('wr_content');
?>
if (document.getElementById('tx_wr_content')) {
if (!ed_wr_content.outputBodyText()) {
alert('내용을 입력하십시오.');
ed_wr_content.returnFalse();
return false;
}
}
document.getElementById('btn_submit').disabled = true;
document.getElementById('btn_list').disabled = true;
-------------------------------------------------------------
이와 같이 올렸어요.
<?
if ($is_dhtml_editor) echo cheditor3('wr_content'); 위에 } 로 안닫고 올렸는데도 처음엔 돼더라구요. }를 안닫아도 상관 없나요?
그리고 한번 된 다음에 다시 글 올리니 연속으로 글을 올릴 수 없다고나옵니다.
이건 왜 그런가요?
with (document.fwrite)
{
if (typeof(ca_name) != "undefined")
if (w.value == "u")
ca_name.value = "<?=$write[ca_name]?>";
}
function html_auto_br(obj)
{
if (obj.checked) {
result = confirm("자동 줄바꿈을 하시겠습니까?\n\n자동 줄바꿈은 게시물 내용중 줄바뀐 곳을<br>태그로 변환하는 기능입니다.");
if (result)
obj.value = "html2";
else
obj.value = "html1";
}
else
obj.value = "";
}
function fwrite_submit(f)
{
<?
if ($g4[https_url])
echo "f.action = '$g4[https_url]/$g4[bbs]/write_update.php';";
else
echo "f.action = './write_update.php';";
?>
return true;
<?
if ($is_dhtml_editor) echo cheditor3('wr_content');
?>
if (document.getElementById('tx_wr_content')) {
if (!ed_wr_content.outputBodyText()) {
alert('내용을 입력하십시오.');
ed_wr_content.returnFalse();
return false;
}
}
document.getElementById('btn_submit').disabled = true;
document.getElementById('btn_list').disabled = true;
-------------------------------------------------------------
이와 같이 올렸어요.
<?
if ($is_dhtml_editor) echo cheditor3('wr_content'); 위에 } 로 안닫고 올렸는데도 처음엔 돼더라구요. }를 안닫아도 상관 없나요?
그리고 한번 된 다음에 다시 글 올리니 연속으로 글을 올릴 수 없다고나옵니다.
이건 왜 그런가요?
댓글 전체
if ($is_dhtml_editor) echo cheditor3('wr_content');
또는
if ($is_dhtml_editor) { echo cheditor3('wr_content'); }
또는
if ($is_dhtml_editor)
echo cheditor3('wr_content');
모두 상관없습니다. 연속으로 등록이 불가능한 부분은 그누보드 환경 설정에 있습니다.
또는
if ($is_dhtml_editor) { echo cheditor3('wr_content'); }
또는
if ($is_dhtml_editor)
echo cheditor3('wr_content');
모두 상관없습니다. 연속으로 등록이 불가능한 부분은 그누보드 환경 설정에 있습니다.