Hi to all,
I’m new here and I need help for my contact form. My friend from Serbia recomended Kirupa Forum and here I am.
Problem is when I receive non latin (Cyrillic Russian) message from my contact form I receive coded symbols like this:
[FONT=Consolas]чÑиьтбджгнгенуе[/FONT]
Then I must go to decode online web site to read message. I need clearly visible text in Russian from contact form.
How can I repair this? I tried everything I know and no changes. (All encoding I’ve tried like windows-1251…etc)
Here is the code:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<html>
<body>
<!--Contact Form-->
<div id="main">
<p id="tip">
Необходимо заполнить все поля!
</p>
<div id="feedback">
<p class="error wrong_name">Введите ваше имя!</p>
<p class="error wrong_email">Неправильный электронной почты!</p>
<p class="error wrong_message">Пожалуйста, введите ваше сообщение!</p>
</div>
<p id="success">Спасибо за ваше доверие!</p>
<form action="php/sendemail.php" id="contact_us" method="post">
<p class="label_name">Имя</p>
<p class="input_form"><input class="input" type="text" name="Name" /></p>
<p class="label_name">Электронная почта</p>
<p class="input_form"><input class="input" type="text" name="Email" /></p>
<p class="label_name">Cообщение</p>
<p class="input_form" id="textarea"><textarea class="message" name="Message" rows="5" cols="4" id="message_input"></textarea></p>
<p id="submit"><input type="submit" value="Отправить!" name="submitButton" class="button" /></p>
</form>
</div>
<!--End Contact Form-->
</body>
</html>
PHP:
<?php
$mailTo = 'mymail@mail.com';
$name = htmlspecialchars($_POST['Name']);
$mailFrom = htmlspecialchars($_POST['Email']);
$subject = 'Message from my web site!';
$message_text = htmlspecialchars($_POST['Message']);
$message = 'From: '.$name.'; Email: '.$mailFrom.' ; Message: '.$message_text;
mail($mailTo, $subject, $message);
?>
Thanks in advance!