I need a rich text editor for my website. I have a very basic form right now, but isn't very useful.
I was wondering if anybody could suggest a form for me that would use a rich text editor. I'm not very experienced with PHP and tried using the fckeditor. I couldn't figure it out. This is the code I want to use
Code:
<?php include_once("fckeditor/fckeditor.php") ; ?>
<html>
<head>
<title>FCKeditor - Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="" method="post" target="_blank">
<?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() ; ?>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
As I said before I know very little PHP, so please excuse the stupid questions I may have.
Thanks
-Alex Konetchy
Last edited by konetch; 04-03-2009 at 12:43 AM..
|