PDA

View Full Version : If and Else Statements don't work for Unicode?


vietkieu_cz
09-14-2006, 08:05 PM
Hi everybody,
I've tried some PHP codes by http://www.w3schools.com/php/php_if_else.asp
I wrote a page in UTF-U (Unicode) and it shows a blank page
then I try in ISO-8859-1 then the page shows all.

=> Page in Unicode => is blank
<html><head><title>C?ng nghe th?ng tin VN</title>
</head>
<body>
<?php
$nd=$_GET['t'];
$noiquy = "Đọc nội quy của VNIT!";
if ($nd=="")
echo "Trang chu VNIT";
elseif ($nd=="noiquy")
echo "$noiquy";
else
echo "Error";
?>
</body>
</html>

-------------- and page wrote in none-unicod
<html><head><title>Cong nghe thong tin VN</title>
</head>
<body>
<?php
$nd=$_GET['t'];
$noiquy = "Doc noi quy cua VNIT!";
if ($nd=="")
echo "Trang chu VNIT";
elseif ($nd=="noiquy")
echo "$noiquy";
else
echo "Error";
?>
</body>
</html>

please help me how to write in Unicode ?
thank you and sorry for my bad English :surprised:

Chousho
09-15-2006, 09:32 AM
Hi everybody,
I've tried some PHP codes by http://www.w3schools.com/php/php_if_else.asp
I wrote a page in UTF-U (Unicode) and it shows a blank page
then I try in ISO-8859-1 then the page shows all.

=> Page in Unicode => is blank
<html><head><title>C?ng nghe th?ng tin VN</title>
</head>
<body>
<?php
$nd=$_GET['t'];
$noiquy = "Đọc nội quy của VNIT!";
if ($nd=="")
echo "Trang chu VNIT";
elseif ($nd=="noiquy")
echo "$noiquy";
else
echo "Error";
?>
</body>
</html>
-------------- and page wrote in none-unicod
<html><head><title>Cong nghe thong tin VN</title>
</head>
<body>
<?php
$nd=$_GET['t'];
$noiquy = "Doc noi quy cua VNIT!";
if ($nd=="")
echo "Trang chu VNIT";
elseif ($nd=="noiquy")
echo "$noiquy";
else
echo "Error";
?>
</body>
</html>
please help me how to write in Unicode ?
thank you and sorry for my bad English :surprised: Your English is good, don't worry! What version of PHP are you using?
I just tried it out to see if the unicode text would appear. I changed it a bit so the variable would show up.

http://www.oishii-sushi.com/tiengviet.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>C?ng nghe th?ng tin VN</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<?php
$nd=$_GET['t'];
$noiquy = "Đọc nội quy của VNIT!";
if ($nd!="")
echo "Trang chu VNIT";
elseif ($nd!="noiquy")
echo "$noiquy";
else
echo "Error";
?>
</body>
</html>

vietkieu_cz
09-15-2006, 09:59 AM
OK thank you very much :) The page works fine.
I'm using PHP Version 4.3.11 (Localhost only)
ps: tiengviet.php => are you Vietnamese? :P

Chousho
09-15-2006, 10:10 AM
OK thank you very much :) The page works fine.
I'm using PHP Version 4.3.11 (Localhost only)
ps: tiengviet.php => are you Vietnamese? :P
Haha, no problem. I'm not Vietnamese, but I have friends who are. I would also like to learn the language, but it's been hard for me, haha.