ben bu FCKeditor yeni duyuyorum, ben bu i ile metnini görüntülemek nasıl (biçimlendirme olmadan) disply sadece düz metin aşağıda belirtilen kod kullanarak, ben metin editörü metin biçimlendirme ve yankı deyimini kullanarak aynı metni görüntüler am ama am format sözdizimi. bana yol lütfen. teşekkür peşin
<?php
include("fckeditor.php");
$sBasePath = $_SERVER['PHP_SELF'] ;
$sBasePath = substr( $sBasePath, 0, strpos( $sBasePath, "_samples" ) ) ;
$oFCKeditor = new FCKeditor('FCKeditor') ;
$oFCKeditor->BasePath = $sBasePath ;
$oFCKeditor->Value = $ing ;
$oFCKeditor->Create() ;
?>
<html>
<head>
<title>Editor</title>
</head>
<body>
<form name="frmedit" id = "frmedit" method="post" enctype="multipart/form-data">
Title : <input type="text" name="txttitle" id = "txttitle">
<br>
<br>
<input type="submit" name="subsubmit" id="subsubmit" value="SUBMIT">
</form>
</body>
</html>
<?php
if($_POST["subsubmit"]=="SUBMIT"){
$part2 = $_POST["FCKeditor"];
echo $part2;
}
?>