Problem with Greek characters

jim0406

New Member
Licensed User
Longtime User
Hi,
i use the httputils2 and job.download("http://www......../mypage.php")
The mypage.php return some fields.values from mysql database with greek characters without problem (i see greek characters in basi4androids logs window) and some string like echo 'mplampla'; with greek characters but with problems, beacuse i see small squares instead greek characters.

mypage.php
<?php
.... database code .......
echo $row['myfield1']; //no problem
echo $row['myfield2']; //no problem
...................
echo 'greekcharacters here'; // problem
?>
Αny help is appreciated
 
Top