จะให้ FCKeditorโหลดข้อมูลมาแก้ไขทำอย่างไรครับ รบกวนพี่ๆด้วยครับ คือผมทำให้เขียนแล้วเซฟได้แล้วแต่ถ้าเราจะทำให้มัน edit ได้ต้องทำอย่างไร
ถ้าเป็นtextareaทั่วไปแบบนั้นได้น่ะครับ ผมลองแล้ว แต่โมดูลFKCeditor ผมไม่รู้ว่าจะใส่ค่าคืนลงไปตรงไหนน่ะสิครับ T_T
Date :
2009-05-10 01:59:23
By :
cliffe
Code (PHP)
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/fckeditor/' ;
$oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ;
$oFCKeditor->Create() ;
?>
ผมว่าแล้วครับ มันมี Property ชื่อ Value ครับ
Date :
2009-05-10 07:51:51
By :
webmaster
ขอบคุณครับ ถามต่อนิดนึง
ระหว่างเก็บข้อมูลที่พิมพ์ๆลงไปในtxt file กับ my sql อันไหนดีกว่ากันเหรอครับ แต่my sqlมันจะเก็บค่าที่รวมตัวอักษรเป็นร้อยเป็นพันไหวเหรอครับแล้ว ขนาดไม่ใหญ่เว่อร์หรือครับ้เนี่ย -*-
Date :
2009-05-10 12:33:26
By :
cliffe
mysql เก็บได้เยอะกว่าและง่ายต่อการนำมาใช้ครับ
Date :
2009-05-10 17:02:32
By :
webmaster
Code (PHP)
<?
$TEXTCONTENT = "<b>ข้อมูล HTML ที่ได้มาจากฐานข้อมูล<hr><hr><font color=\"red\">ทดสอบๆ</font></b>";
$TEXTCONTENT = eregi_replace("\n", '', $TEXTCONTENT);
$TEXTCONTENT = eregi_replace("\r", '', $TEXTCONTENT);
$TEXTCONTENT = addslashes($TEXTCONTENT);
?>
<HTML>
<HEAD>
<TITLE>TEST</TITLE>
<meta http-equiv="content-type" content="text/html; charset=windows-874">
<script type="text/javascript" src="FCKeditor/fckeditor.js"></script>
</HEAD>
<BODY>
<form>
<script type="text/javascript">
<!--
var oFCKeditor = new FCKeditor('TEXTCONTENT');
oFCKeditor.BasePath = '/FCKeditor/';
oFCKeditor.Width = '95%';
oFCKeditor.Height = '400';
oFCKeditor.Value = '<?=$TEXTCONTENT?>' ;
oFCKeditor.Create() ;
//-->
</script>
</form>
</BODY>
</HTML>
Date :
2012-04-06 11:18:43
By :
poulim
Load balance : Server 01