http://www.mydomain.com/index.php
http://www.mydomain.com/admin/
http://www.mydomain.com/admin/test.php
http://www.mydomain.com/admin/fckeditor/
<?php
include("./fckeditor/fckeditor.php") ;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Test</title>
</head>
<body>
<form action="sampleposteddata.php" method="post" target="_blank">
<textarea name="test" cols="" rows=""></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
Re: FCKEDITOR Not working in PHP Script
Re: FCKEDITOR Not working in PHP Script
Replace your HTML textarea with something like this:
<?php $editor = new FCKeditor('_fieldname'); $editor->Value = $_fieldname; $editor->Create(); ?>