使用PHP POST方法编写特殊字符

时间:2013-03-28 14:42:17

标签: php html forms encoding character-encoding

我有一个表单,我正在使用PHP文件将其内容写入文本文件。我的问题是,每当我尝试写特殊字符(例如èéàáää...等)时,它们就会被其他奇怪的字符(例如ÃÃÃreplaced)所取代。

我环顾四周,但不同论坛上提出的解决方案都没有解决我的问题。

在这里你可以找到我正在谈论的HTML表单: http://beginninghtml.altervista.org/InfinitySMS_Web/index.html

处理我的html表单的PHP文件是http://beginninghtml.altervista.org/InfinitySMS_Web/process-form-data.php

$phonenum = $_POST['phonenum'];
$messagetext = $_POST['messagetext'];
$types=$_POST['types'];
$message=stripslashes($messagetext);
//if no message entered and no mobile num entered print an error 
if (empty($phonenum) && empty($messagetext)){
print "Non sono stati inseriti il testo del messaggio e il numero del destinatario.<br>Inseriscili per poter inviare il tuo messaggio.";
}
//if no message entered send print an error 
elseif (empty($messagetext)){
print "Non è stato inserito alcun testo per il messaggio.<br>Inseriscilo per poter inviare il tuo messaggio.";
}
//if no mobile num entered send print an error 
elseif (empty($phonenum)){
print "Non è stato inserito il numero del destinatario.<br>Inseriscilo per poter inviare il tuo messaggio.";
}
elseif (strlen($phonenum)<11){
    if (strlen($phonenum)>9){
        //if the form has both a phone number and a text message. 
        //write data to the file
        $name = $_POST['phonenum'];
        $email = $_POST['messagetext'];
        $fp = fopen("formdata.txt", "a");
        $savestring = $name . "!$@$!;" . $email . "!$@$!;\n";
        fwrite($fp, $savestring);
        fclose($fp);
        header("location:success.html");
    }
    else
    {
        print "Il numero di cellulare inserito non è corretto: il numero del destinatario deve contenere 10 cifre.";
    }
}

在这里,您是包含所谓“奇怪”字符的txt文件的URL: http://beginninghtml.altervista.org/InfinitySMS_Web/formdata.txt

1 个答案:

答案 0 :(得分:2)

认为您错过了header()

中设置的UTF-8编码

Add header('Content-Type: text/html; charset=utf-8');,一切都应该没问题。

另外,请确保你的formdata.txt文件也有utf-8编码