How to display a mysql table data in another language properly in php

前端 未结 2 871
死守一世寂寞
死守一世寂寞 2021-01-28 10:14

i have a mySQL table which the data in one of its columns is in a language other than English.(Persian) when i input data in the table , it is shown properly but when i want to

2条回答
  •  没有蜡笔的小新
    2021-01-28 10:39

    Add the correct content-type header:

    header('Content-type: text/html; charset=utf-8');
    

    or whatever encoding you use instead of UTF-8

提交回复
热议问题