I have a simple PHP code. And I use "PHP designer" software as editor. My problem is in the editor itself , and the texts in editor changed to ascii codes ! (I don't know but I think it is ascii)
The language of texts is arabic but after I saved it and close the editor. all of the arabic words in my php file changed to codes. Here is part of my codes.
<?php
if (condition)
{
if (mysqli_num_rows($result) > 0)
{
echo 'عملیات';
exit();
}
}
?>
All I want is change this codes to arabic words. I tried to open this file with Dream Weaver and Notepad++ but in this editors the arabic words changed to ascii codes too.
Is there any way to solve this problem ?