Hello....
I am trying do display data stored in mysql.. i get the data but because it
is(text) in greek it comes out like ?????????
i have changed the collation to greek_bin
both in the table as in the whole database...
I even tryied with the HTML tags of charset but even though i get these
???????
to define: i got a table named fysc and two columns named "per" and "askisi"
as you see, i am searching in askisi to get results from per....
my code:
$sql = 'SELECT per FROM fysc WHERE askisi="fysc2" ';
//$what = mysql_query($sq l);
$results = mysql_query($sq l);
//$what = mysql_query($sq l); ?>
while ($row = mysql_fetch_arr ay($results)) {
extract($row);
echo $per;
echo "<br>";
}
?>
I am trying do display data stored in mysql.. i get the data but because it
is(text) in greek it comes out like ?????????
i have changed the collation to greek_bin
both in the table as in the whole database...
I even tryied with the HTML tags of charset but even though i get these
???????
to define: i got a table named fysc and two columns named "per" and "askisi"
as you see, i am searching in askisi to get results from per....
my code:
$sql = 'SELECT per FROM fysc WHERE askisi="fysc2" ';
//$what = mysql_query($sq l);
$results = mysql_query($sq l);
//$what = mysql_query($sq l); ?>
while ($row = mysql_fetch_arr ay($results)) {
extract($row);
echo $per;
echo "<br>";
}
?>
Comment