Jump to content

Problem with displaying strings written in non-english languages?


proud

Recommended Posts

I'm trying to design a website that contains multiple languages (English, Arabic, French etc..)

 

I haven't faced any problem with the English part, but when I tried to display strings containing Arabic letters to the screen using echo command I get ????? question marks or other symbols instead of the text that is supposed to be displayed. and I tried to display them using the HTML part of the code but it also led to the same result. Any idea how this problem can be solved?

 

 

<html><head>

<title>MultiLingual Website</title>

</head>

<body>

<?php

echo "Math"; //English

echo"<br><br>";

echo"Matemáticas";   // French word meaning Math

echo"<br><br>";

echo "رياضيات";  // Arabic word meaning Math

echo"<br><br>";



?>

رياضيات

</body>

</html>


 

 

Result:

 

Math

Matemáticas

???????

??????? 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.