I have installed the FCKeditor and it works almost flawlessly .. In my admin panel I have page 1 with editor code and page 2 with editor code ... however when i go to either page it shows me two instances of the editor.
here is the basic forms in the two pages ....
<form method="post">
<br>
<input type="submit" value="Submit" name="SubFPsmu">
</form>
###########
<form method="post">
<br>
<input type="submit" value="Submit" name="SubFPNews">
</form>
here is the basic forms in the two pages ....
<form method="post">
<?php $oFCKeditor = new FCKeditor('FPsmu') ; $oFCKeditor->BasePath = 'include/FCKeditor/'; $oFCKeditor->Value = $FPsmu; $oFCKeditor->Create() ; ?>
<br>
<input type="submit" value="Submit" name="SubFPsmu">
</form>
###########
<form method="post">
<?php
$oFCKeditor = new FCKeditor('FPNews') ;
$oFCKeditor->BasePath = 'include/FCKeditor/';
$oFCKeditor->Value = $FPNews;
$oFCKeditor->Create() ;
?>
<br>
<input type="submit" value="Submit" name="SubFPNews">
</form>