FCK Editörrün Siteye eklenmesi

Fck Editörün kendi Sitemize eklenmesi
•İlk işlem olarak http://www.fckeditor.net/download adresinden fckeditör’ü indiriyoruz.
•Daha sonra indirdiğimiz dosyaları site klasörümüze çıkartıyoruz.
<?php
include(“FCKeditor/fckeditor.php”) ;
?>
•Öncelikle fckeditor.php sayfasını include ediyoruz.
<form action=”b.php” method=”post”>FCK Editörrün Siteye eklenmesi
<?php
$oFCKeditor = new FCKeditor(‘FCKeditor1’) ;
$oFCKeditor->BasePath = ‘/FCKeditor/’;
$oFCKeditor->Value = ‘Default text in editor’;
$oFCKeditor->Create() ;
?>
<input type=”submit” value=”Submit”>
</form> •Sonra da formumuzu oluşturuyoruz
<?php
$sValue = stripslashes( $_POST[‘FCKeditor1’] ) ;
echo ($_POST[‘FCKeditor1’] );
?>
•Son olarak editördeki bilgileri bir önceki sayfadan çekiyoruz
Kaynak Aykut TÜRKER