/    Sign up×
Community /Pin to ProfileBookmark

Problems with fonts

Hello
I have a problem on retrieving some fields from the Database. The data in the fields are written with Greek fonts.
In the mysql the data are viewed correctly the problem is when I am trying to print them out.

In properties of the mysql fields I have CHARACTER SET utf8 COLLATE utf8_unicode_ci

I also have tried to use instead of ‘utf8’ ‘greek’ in this line —- mysql_query(“SET NAMES ‘utf8′”, $connection);

Please help
Thank you

[code]

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title>Untitled Document</title>
</head>

<body>

<?php

require(“config.php”);
$connection = mysql_connect($db_host, $db_user, $db_password) or die(“error connecting”);
mysql_select_db($db_name, $connection);

mysql_query(“SET NAMES ‘utf8′”, $connection);

$query = “SELECT * from area”;
$result = mysql_query($query, $connection);

for ($i = 0; $i < mysql_num_rows($result); $i++)
{
$autoid = mysql_result($result, $i, “autoid”);
$area = mysql_result($result, $i, “area”);

echo $area;

}

?>

</body>
</html>

[/code]

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @spyros spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.24,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...