Forum Moderators: coopster
[ Ċ ċ - Ġ ġ - Ħ ħ - Ż ż ]
(Unicode: 266,267 288,289 294,295 379,380)
These chrs show well with plain html but not from php if for instance I use
print 'Ċċ Ġġ'; => Cc Gg
Worse... I am converting an XLS file (.csv) with such characters into MySQL and these characters are replaced by '?' in MySQL. I tried to use different charsets of MySQL but no difference what so ever.
I'm desperate now.
and produced two lines of a C with a dot, a c with a dot, a G with a dot, a g with a dot, an H with a line on its upper part and an h with a line.
Are you executing your print statement in the body of html? That is, do you have:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
print 'Ċċ Ġġ';
?>
</body>
</html>