-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Server is PHP5 and HTML charset is latin1 (iso-8859-1). With regular form POST requests, there's no problem with "special" characters like the em dash (–) for example. Although I don't know for sure, it works. Probably because there exists a representable character for the browser at char code 150…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
what is the difference between utf8 and latin1?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi guys,
What can I do to ensure that replication will use latin1 instead of utf-8?
I'm migrating between an MySQL 5.1.22 server (master) on a Linux system and a MySQL 5.1.42 server (slave) on a FreeBSD system. My replication works well, but when non-ascii characters are in my varchars, they turn…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
I'm using a particular cloud hosting solution (one which i won't name) and they don't provide ssh access so i'm at a whim on how the database is dumped.
I downloaded the dump which is packed into a tar.gz file. I discover that this file utilizes latin1 encoding. Which i don't get to specify the…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Let`s have a example hotels table:
CREATE TABLE `hotels` (
`HotelNo` varchar(4) character set latin1 NOT NULL default '0000',
`Hotel` varchar(80) character set latin1 NOT NULL default '',
`City` varchar(100) character set latin1 default NULL,
`CityFR` varchar(100) character set latin1 default…
>>> More