В общем проблема:
есть редактор TinyMCE, через него отправляю в БД текст статьи.
Если в редактор занести немного символов (где-то до 250-400, в зависимости от количества строк), то текст отправляется абсолютно нормально, никаких проблем нет. НО если занести больше символов (статьи относительно большие, по 0,5-1 страницы Word'a шрифт 10), то вместо русских символов появляются кракозябры.
Может в редакторе стоит какое-то ограничение??? или что-то ещё.
P.S. Вручную вносить в БД не удобно, так как нужно оборачивать все html' ем, через Dreamweaver тоже не лучший вариант (это, что на других форумах посоветовали)
Буду благодарен за помощь!
вот коды страниц:
подключение TinyMCE
<script type="text/javascript" src="js/jquery.tinymce.js"></script>
<script type="text/javascript">
$(function() {
$('textarea.tinymce').tinymce({
// Location of TinyMCE script
script_url : 'js/tiny_mce.js',
setup : function(ed) {
// Display an alert onclick
// Add a custom button
ed.addButton('adddiv', {
title : 'Add div to selected text',
image : 'img/adddiv.gif',
onclick : function() {
ed.selection.setContent( '<div >'+ed.selection.getContent()+'</div>');
}
});
},
//tiny_mce.js
// General options
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertda tetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visu alchars,nonbreaking,xhtmlxtras,template",
// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyrigh t,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockqu ote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,foreco lor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,p rint,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs ,|,visualchars,nonbreaking,template,pagebreak,adddiv",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,
// Example content CSS (should be your site CSS)
content_css : "css/content.css",
// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",
// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
});
</script>
другой файл, здесь полученная информация приводится в нужный вид и отправляется в БД, (в базу данных все добавляется нормально, и правильный текст и кракозябры тоже)
<script>
$('p:first').attr('id','iden');
var iden = $('#iden').text();
var sec = $('span[style*=underline]').text();
var htm = $('div').html();
var all = '<h3><a href="#">' + sec + '</a></h3><div>' + htm + '</div>';
$.post("updatemore.php",{iden:iden, all:all},function (data){$('#forresult').text(data);});</script>