The forum operates in read-only mode. Please head to StackOverflow for support.
<?php include("../fck/fckeditor/fckeditor.php") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="savedata.php" method="post"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '../fck/fckeditor/'; $oFCKeditor->Value = 'Default text in editor'; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html>
Re: BasePath problem
Re: BasePath problem
Also, leave off the first '/' it should just be 'FCKeditor'
Re: BasePath problem
http://www.xxx.nl/cms/test/
Re: BasePath problem
Re: BasePath problem
Re: BasePath problem
<?php include("../fck/fckeditor/fckeditor.php") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="savedata.php" method="post"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '../fck/fckeditor/'; $oFCKeditor->Value = 'Default text in editor'; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html>Re: BasePath problem
Pora thanks!!!!!!!!!!!!!!