Hello Everybody,
i have a problem with (FCKEditor) which is:
when trying to submit the form which contain the editor it doesn't send the Target specified in the form action attribute, it send directly to the main website
Example:
<form action="http://www.xxx.com/TestEditor.php" method="post" name="MyForm"> <?php $oFCKeditor = new FCKeditor('Test') ; $oFCKeditor->BasePath = "fckeditor/"; $oFCKeditor->Value = ""; $oFCKeditor->Height = "400"; $oFCKeditor->Create() ; ?> <input type="submit" name="add" value="Click Me"> </form>