Si alguien tiene el mismo problema lo resolví con
Código PHP:
<?php
function conectar ()
{
global $conn;
$conn = mysql_connect("xxxx", "xxxx", "xxxx")
or die (mysql_error());
mysql_select_db("xxxxx",$conn)
or die (mysql_error());
mysql_query ("SET NAMES 'utf8'"); /*ESTA LINEA*/
}
?>
http://www.forosdelweb.com/f86/corre...s-utf8-649670/