Using 1.5:
The 'value' doesn't show up in the text editor, it is blank, I can type, but when I submit, the 'value' is what is passed on. The text editor is ignored.
Any suggestions? I'm using PHP.
Also, I copied the text directly from test.php which works, why doesn't mine work?
Here is my code:
<?php include("/home/jeremyvaught/www/FCKeditor/fckeditor.php"); ?>
<form action="testsubmit.php" target="_blank" method="post" language="javascript">
<?php $oFCKeditor = new FCKeditor ; $oFCKeditor->BasePath = 'http://jeremyvaught.com/FCKeditor/' ; //This line won't work using the absolute path, like above. $oFCKeditor->Value = 'This is my custom value.' ; $oFCKeditor->CreateFCKeditor( 'EditorDefault', '100%', '500px' ) ; ?>
<BR>
<INPUT type="submit" value="Submit Data">
</form>
RE: No Text