使用PHP 和MySQL 儲存和顯示Unicode 字串(हिन्दी)
問題:
要解決此問題,需要執行以下步驟:
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
header('Content-Type: text/html; charset=utf-8');
<?php include("connection.php"); // Include database connection mysql_query("SET NAMES utf8"); // Set database character set $result = mysql_query("select * from hindi"); // Fetch data from the database while ($myrow = mysql_fetch_row($result)) { echo ($myrow[0]); // Echo the Hindi text } ?>
CREATE TABLE `hindi` ( `data` varchar(1000) character set utf8 collate utf8_bin default NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
以上是如何使用 PHP 和 MySQL 正確儲存和顯示印地語文字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!