The correct string is Culto Mensal Área Vila Mariana but it appears Culto Mensal Ãrea Vila Mariana .... Gratidão = Gratidão
I have already tried with htmlspecialchars function
<?php
include "mysqlconecta.php"; // Conecta ao banco de dados
$result=mysql_query("select * from CDEventos");
echo "<table width=900 border=\"2\">";
echo "<tr>";
echo "<td>Titulo</td>";
echo "<td>Local</td>";
echo "<td>Data</td>";
while($row=mysql_fetch_array($result)){
echo "<tr>";
echo "<td>".$row['titulo']."</td>";
echo "<td>".$row['local']."</td>";
echo "<td>".$row['data']."</td>";
echo "<td>";
echo "<a href=\"altera.php?id=".$row['id']."\">Alterar</a>";
echo "  ";
echo "<a href=\"deletar.php?id=".$row['id']."\">Excluir</a>";
echo "</td>";
echo "</tr>";
}
?>