Ver Mensaje Individual
  #7 (permalink)  
Antiguo 15/12/2007, 12:55
Avatar de gabyweb
gabyweb
 
Fecha de Ingreso: enero-2002
Ubicación: Lima
Mensajes: 364
Antigüedad: 22 años, 10 meses
Puntos: 0
Re: Insertar caracteres en ruso en MySQL

Este es mi script:
Código PHP:
<?php
set_time_limit
(0);
include(
"../connect.php");
$con=conectar_access();
mysql_query("SET NAMES 'utf8'");
mysql_query("SET CHARACTER SET 'utf8'");
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Terms</title>
<link rel="stylesheet" href="estilo/css.css" type="text/css" />
</head>
<body>
echo "<p><h3>This is with Access</h3></p>";
$query="select top 20 * from `I_Bulgarian` order by conceptid";
$rs = odbc_exec ($con, $query);
while (odbc_fetch_row($rs)) {           
    echo odbc_result($rs,utf8_encode("origterm"))."<br>";
}
odbc_close( $cn ); 
 echo "Success!!"; 
?>
</body>
</html>
?>
El cotejamiento de la bd MySQL es utf8_unicode_ci

Y la conexión es vía odbc
__________________
Gaby :adios: