Hi,
I'm a beginner and have a big problem here.
This question has certainly been asked a thousand times but I can't find a simple answer anywhere...
Here is the plan...
<?php
$Text = "Zéphir est né le quinzième jour de l'année";
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<head>
<title>Untitled</title>
<meta name="generator" content="BBEdit 6.1.1">
</head>
<body>
<?php
echo $Text;
?>
</body>
...and I get crappy, non accentuated characters in my WebPage.
So, my qestion is :
When I declare a String containing accentuated characters (like "é"), how do I convert this in "é" simply without some complicated script ?
Thanx ;-)