Código:
Eso es una cosa, ahora lo segundo, he creado una tabla en Mysql de este tipo, utf8_general_ci con el siguiente escript:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Código:
La base de datos tambien esta creada con el juego de caracteres utf8_general_ci, entonces al grabar un dato ej: "don't worry" (son las comillas) lo graba, pero al momento de recuperarlo pasa lo mismo que antes, se distorciona todo, que puedo hacer? de ante mano muchas gracias por la ayuda.... CREATE TABLE `NOMBRE` ( `ID` float NOT NULL, `NOMBRE` varchar(50) NOT NULL, `TEXTO` text NOT NULL, `FECHA` datetime NOT NULL, `VISIBLE` int(11) NOT NULL, `RATING` float(8,1) NOT NULL default '0.0', PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8