Проблем с кирилица в добавяне на новини

CasualStyle

Registered
Здравейте, имам проблем с един скрипт за добавяне на новини, когато пиша новини на кирилица ми излиза тази грешка
Код:
Incorrect string value: '\xE0\xF1\xE4\xE0\xF1\xE4' for column 'name' at row 1




Енкодинга ми е windows-1251 ...

Ето скрипта за новините

Код:
<?
include("inc/header.php");
?>

<div id="left">
	<div class="leftmenu"><div class="menutext">ДОБАВИ НОВИНА</div></div>
	
	
	
	
	<?
		if ($auth->acl_gets('a_'))
    {
?>
<meta http-equiv="content-type" content="text/html; charset=windows-1251" />
<script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
        // General options
        mode : "textareas",
        theme : "advanced",
        plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",

        // Theme options
        theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
        theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
        theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
        theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,spellchecker,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,blockquote,pagebreak,|,insertfile,insertimage",
        theme_advanced_toolbar_location : "top",
        theme_advanced_toolbar_align : "left",
        theme_advanced_statusbar_location : "bottom",
        theme_advanced_resizing : true,

        // Skin options
        skin : "o2k7",
        skin_variant : "silver",

        // Example content CSS (should be your site CSS)
        content_css : "css/example.css",

        // Drop lists for link/image/media/template dialogs
        template_external_list_url : "js/template_list.js",
        external_link_list_url : "js/link_list.js",
        external_image_list_url : "js/image_list.js",
        media_external_list_url : "js/media_list.js",

        // Replace values for the template plugin
        template_replace_values : {
                username : "Some User",
                staffid : "991234"
        }
});
</script>
<?
if(isset($_POST['submit'])) {
$namen = $_POST['namen'];
$news = $_POST['content'];
$picture = $_POST['picture'];
$potrebitel = $user->data['username'];
$date = date("d.m.Y / H:i:s");
if(empty($news)) { echo "Моля напишете текст на новината"; } else {
if(empty($namen)) { echo "Моля напишете име на новината"; } else {
$insert = mysql_query("INSERT INTO `news` (`name` , `newstext` , `user` , `date`, `picture`) VALUES ('$namen', '$news', '$potrebitel', '$date', '$picture')");
if($insert) { echo "Успешно добавихте новината";} else { echo mysql_error(); } }}}
?>

<form method="post" action="">
Име на новината<input type="text" name="namen"><br>
Картинка на новината<input type="text" name="picture"><br>
<textarea  name="content"></textarea>
<input type="submit" name="submit" value="Добави новината">
</form>

<? } ?>
	
	
	
</div>
<? include("inc/footer.php"); ?>
 
ами нормално, ти не ескейпваш стринга .. ползвай htmlspecialchars или mysql_real_escape_string() .. и си оправи енкодинга в таблиците .. ;)
 
1.Таблицата трябва да е utf-8(и всички полета в нея)
2.Html таг за utf-8
3.Работи перфектно

Ако все пак след тези 2 неща имаш проблем при connect се добавя

mysql_query("SET NAMES utf8");
 

Back
Горе