sashgera
Newbie | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору Всем привет такой вопрос уже был и ответы на него тоже.., но я бьюсь лбом целую неделю. FCKeditor 2.6.4.1 залил на хост, настроил, картинки на сервер грузятся, но в странице test.php, в которую предположительно будет добаляться/редактироваться текст, ничего не добавляется, привожу ее код: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> <title>Untitled Document</title> </head> <body> <?php $sValue = stripslashes($_POST['FCKeditor1']); ?> тестовая страница </body> </html> код редактора: (здесь все путем - открывается и отправляет) <?php include("FCKeditor/fckeditor.php") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="FCKeditor/editor/sampleposteddata.php" method="post"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/FCKeditor/'; $oFCKeditor->Value = 'Default text in editor'; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html> |