Reemplazar caracteres especiales por tildes php html
Estoy trabajando en php y mysql; estoy haciendo una consulta pero como resultado los valores que tienen tilde son reemplazados por caracteres especial, como puedo modificarlos, el código que tengo es el siguiente
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
</head>
<body>
<?php
$data = file_get_contents('php://input');
//$Tabla= new SimpleXMLElement($data);
$link = mysql_connect("localhost", "DataBase", "1001");
//mysql_set_charset($link, 'utf8');
mysql_select_db("DataBase", $link);
//if $data <>(compradores) {
$result = @mysql_query("SELECT * FROM tabla", $link);
// mysql_set_charset( $result , 'utf8' );
$rawdata = array();
//guardamos en un array multidimensional todos los datos de la consulta
$i=0;
while($row = @mysql_fetch_array($result))
{
$rawdata[$i] = $row;
$i++;
}
//DIBUJAMOS LA TABLA
echo '<table width="100%" border="1" style="text-align:center;">';
$columnas = count($rawdata[0])/2;
//echo $columnas;
$filas = count($rawdata);
//echo "<br>".$filas."<br>";
//Añadimos los titulos
for($i=1;$i<count($rawdata[0]);$i=$i+2){
next($rawdata[0]);
echo "<th><b>".key($rawdata[0])."</b></th>";
next($rawdata[0]);
}
for($i=0;$i<$filas;$i++){
echo "<tr>";
for($j=0;$j<$columnas;$j++){
echo "<td>".$rawdata[$i][$j]."</td>";
}
echo "</tr>";
}
echo '</table>';
if(empty($_POST) || $_POST["sql"] == ""){
DIE("");
}
¿
?>
</body>
</html>