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") ;
?>
include("FCKeditor/fckeditor.php") ;
?>
- Öncelikle fckeditor.php sayfasını include ediyoruz.
<form action="b.php" method="post">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
<input type="submit" value="Submit">
</form>
<?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
- Son olarak editördeki bilgileri bir önceki sayfadan çekiyoruz
Yorumunuzu Ekleyin