hey al. i'm using a flash contact form with php. but i have a huge problem, i can't write nor read in japanese...when i try to type i get weird characters, and when i read it same thing..what can i do? my php script is
HTML>
<HEAD>
<TITLE>Contact form</TITLE>
<BODY>
<?php
$TextVariable = '&result=';
$response = 'Data has been sent.';
echo $TextVariable;
echo $response;
mail ("you@you.com", "Message", "
Message
Name:
$name
Email-address:
$email
Message:
$message
");
?>
</body>
</html>