Tengo una base de datos que usa utf8-bin (No encontré utf-8 plano). el caso es que veo la base de datos y veo todo bien, pero cuando despliego la información con php en el sitio nota.php, despliega simbolos raros, pero solo al momento de desplegar el titulo!
http://eldespertar.mx/nota.php?NOT_ID=29&height=480&width=750&inlineId=m yOnPageContent
ese es el archivo, y este es el código:
Código PHP:
   <?php header('Content-type: text/html; charset=UTF-8_bin'); ?>
<html>
<head>
<title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8_bin" />
 
</head>
 
<div style="float:right; display:inline-block;">
<?php 
 
include('funciones.php');
$NOT_ID = $_GET['NOT_ID'];
?>
 
</div>
 
<?php 
echo nota_despliegatitulo();
echo despliegafotos($NOT_ID);
echo nota_desplieganota() ?>
 
</html>   En la página principal, todos los textos aparecen bien al ser llamados con Php...
Por favor ayuda :´(!!!
Gracias!!
 
 



