Tarih Mart 21st, 2007 Yazan admin
HTML yazı editörü olan bu program sadece bu özelliği ile kısıtlı değildir. Programın ana özelliği web siteniz için hazırlayacağınız tasarım sayfalarını bu programla açarak istediğiniz değişiklikleri, hataları, yapılması gerekenleri bulabilir birçok güçlü özelliği ile site tasarımınızı güçlendirebilirsiniz.
demo adresi
Bu program ile açabileceğiniz programlama dilleri : ASP.Net , ASP , PHP , ColdFusion , Java , Perl , html, XHTML 1.0

Not: fckeditor tüm internet tarayıcıları ile uyumlu çalışmaktadır. Download için açılan sayfadan istediğiniz bir linki tıklayarak innDirme işlemine başlayabilirsiniz.
Kullanımı:
<?php
include("FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Örnet</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="savedata.php" method="post">
<?php
$oFCKeditor = new FCKeditor('metin') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
include("FCKeditor/fckeditor.php") ;
?>
<html>
<head>
<title>FCKeditor - Örnet</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="savedata.php" method="post">
<?php
$oFCKeditor = new FCKeditor('metin') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = 'Default text in editor';
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Post ettiği değer "metin"
$_POST['metin']
diye kolayca alınabilir.
http://wiki.fckeditor.net/



Yorum Yaz