Tagged Questions
0
votes
1answer
31 views
MySQL query returning non UTF8 characters
I've got a login screen that checks entered username and password against a MySQL database.
My problem is that it doesn't recognize Swedish characters like "ÅÄÖ".
For example, the password "lösenord" ...
0
votes
1answer
23 views
Handling CSV data encoding to be inserted into UTF-8 Database
We have some CSV files that our users will be using and hence the encoding may not be UTF-8 and will probably be cp1252 encoding from Windows. I have noticed that if it contains a single quote for ...
1
vote
1answer
19 views
What could break charsets between database and display?
I am using a MySQL database to store some strings which contain German umlauts (äüö). The table "testtable" and the column "text" are utf8_bin collated, and PHPMyAdmin tells me the "MySQL connection" ...
2
votes
6answers
67 views
UTF-8 and German characters?
I have problem with German characters on my web site,
in html/php part of website i have this code to set utf-8:
<meta charset="utf-8">
in mysql, i have this code to set utf-8
SET CHARSET ...
1
vote
0answers
31 views
How to convert HTML character references in MySQL?
In one old database we have HTML character references like: 展览 how can I convert them into valid UTF8 characters (展览 -> 展览)?
I know that e.g. PHP func ...
0
votes
1answer
22 views
Codeiginter mysql storing chinese characters as questions marks
When I type in chinese characters to store in the database, it becomes ??? question marks instead.
Anyone can help me with this?
My codeigniter config settings for char set is
...
0
votes
0answers
11 views
Web service UTF-8 on Tomcat 7 on CentOS6
I have a service deployed in Tomcat 7 on CentOS6. The service has 2 elements: The first one is read database and send data to client. The second one is to insert some new data.
This service is run ...
0
votes
0answers
20 views
myql-front replacing symbols to question marks
when manually inserting into myql-front some string after refrash it replace to question marks
the problem is that when im selecting that column it comes same question marks symbols to html
i have ...
0
votes
2answers
22 views
Alphabetical ordering of a utf8_bin table with Codeigniter
I store a table in MySQL with collation utf8_bin. I want to select all names ordered alphabetically using Codeigniter's active record tools but the code below sorts all words starting by a capital ...
-2
votes
1answer
47 views
UTF8 Characters not displayed correctly [duplicate]
In my mysql database i have string with german umlauts (ä, ö, ü).
I query them with php/mysql and when displayed on my website, they show up like this:
�
I have this html in my website:
<meta ...
0
votes
0answers
22 views
MYSQL - From utf8_bin to latin1_swedish_ci
I've imported phpbb records to vbulletin using impex. But now I've a problem with charset. PHPBB was in utf8, vbulletin is in latin1. How can i convert EVERY characters? I've seen this code: Detecting ...
-1
votes
1answer
28 views
Force a form to send in UTF8 to my MySQL [duplicate]
I'm designing the backend of a web with dreamweaver and MySQL. When I send a form, the content is weird (Like Áa(C)) and not show de correct charset. I put the charset utf8 in the header (in the php ...
0
votes
0answers
30 views
Webpage encoding utf-8
I am having massive problems and very confused of what to do?
My Mysql database Collation: latin1_swedish_ci
My header: meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
Before ...
0
votes
1answer
32 views
swedish characters encoding failure when inserting data to mysql database from a webservice
I tried to insert swedish characters from a webservice,
My code like this
Header("Content-Type: text/html; charset=UTF-8");
$xml = new XMLReader();
...
-3
votes
0answers
25 views
Mysql Inserting weird characters [closed]
21:38:36,648 WARN [JDBCExceptionReporter] SQL Error: 1366, SQLState: HY000
21:38:36,648 ERROR [JDBCExceptionReporter] Incorrect string value: '\xC2\x80\xC2\x93 L...' for column ...
0
votes
1answer
37 views
MySQL. Insert UTF-8 characters to database
I need to add usernames from Facebook to database and these names have UTF-8 characters like (ą,č,ę,ė,į,š,ų,ū). When I add It to database for example letter š looks like Å¡
In myPhpAdmin I found ...
0
votes
0answers
41 views
PHP + Charset UTF-8 and the character ô
I have really problems with Vietnamese characters in inputs.
After the POST method I take all inputs fields and run on them this method:
public function stripcleantohtml($s){
return ...
0
votes
2answers
38 views
UTF8 combination PHP/MySql [duplicate]
My sql database have utf8_unicode_ci collation and HTML have utf8 (meta charset="utf-8").
when i write in PHP:
$query = "SELECT * FROM `subjects` WHERE `year` = '$year'";
$result = ...
-1
votes
1answer
46 views
Best practice handling UTF-8 in PHP / MySQL application [duplicate]
I've been struggling with this for a while. I'm building a web site in PHP and MySQL. But the way that special characters such as "öäüß" behave is oddly random!
I'm using these encodings:
PHP ...
1
vote
1answer
50 views
MySQL PHP - how to display non readable character stored in database
I'm working with ZendFramework 2, here is my setting
./config/autoload/global.php
'db' => array(
'driver' => 'Pdo',
'dsn' => 'mysql:dbname=littlepinktree;host=localhost',
...
0
votes
1answer
49 views
ZF2 Doctrine2 MySql charset error
I've setup a MySQL DB with utf8_unicode_ci collation, and all the tables and columns on it have de same collation.
My Doctrine config have SET NAMES utf8 as a connection option and my html files use ...
0
votes
2answers
40 views
MySQL Unicode Data
I have data in a table that looks like this (based on SQLYog):
(1) µéÁÂÓ ·Óá¡§
But when the forum system that is reading the data shows it on screen it looks like this:
(2) ต้มยำ ทำแกง
The second ...
0
votes
1answer
43 views
Encoding issues for php and mysql
I'm having encoding issues with my LAMP stack.
The web page head has:
My PDO dsn is: mysql:host=localhost;dbname=$database;charset=utf8
The options array is:
options = array (
// ...
1
vote
1answer
39 views
Unable to display polish characters in mysql
This may look like a duplicate but I've been searching for hours and none of the suggested fixes for similar problems are working:
I have text in xls file that was converted to CSV. It contains ...
0
votes
0answers
20 views
jquery navigation gives ? encoding error
I am using the following code for my navigation. My index.php has a PHP MySQL query which displays content encoded in utf8_general_ci, and the apostrophes display correctly. When I use the script ...
2
votes
1answer
37 views
Changing character set in MySQL
When I started my website I set all the table columns to "utf8_general_ci" thinking this would make everything store in UTF8.
According to the mysql_client_encoding() function in PHP, I've been ...
0
votes
0answers
15 views
Setting MySQL encoding in OS X
I know this is a very common issue. When I want to execute a query with utf8 data on it with Terminal, for example:
'SELECT id from matrix where content="Número";'
it is replaced by:
'SELECT id ...
0
votes
0answers
22 views
Why does setting the default character set and collate not affect the character_* and collation_* variables?
If I run this statement against my database, it seems there is no effect on the character_set_database and colloation_database variables:
ALTER DATABASE `my-database`
DEFAULT CHARACTER SET utf8
...
0
votes
2answers
26 views
HTML Characters in MySQL PHP
In my database i have the following information
one for each row.
s=evil+dead&Search.x=0&Search.y=0
s=algoritmos&Search.x=20&Search.y=19
...
0
votes
0answers
34 views
Collation in MySQL - Which one to use?
I have a website that deals with characters written in Spanish, French, German, English and Catalan language. I run the website using Drupal and MySQL 5.5.
I want to use a collation on my table ...
-2
votes
0answers
65 views
Linux bash script to convert MySQL tables encoding to UTF8 [closed]
I'm looking for a Linux bash script to be given DB name and to alter tables encoding to utf8.
maybe someone did such thing and willing to share it out loud?
10x
0
votes
1answer
26 views
Case insensitive search (and order by case insensitively) in a case-sensitive column
I have a case-sensitive colume(utf8_bin collation).
I need to search a string case-insensitively and order the results case-insensitively.
Is have written this query.
SELECT customer_name
FROM ...
0
votes
3answers
54 views
Latin-1 / UTF-8 encoding php
I have a db in UTF-8 encoding with a mixture of Latin-1. (I think that that is the problem)
This is how the characters look in the database.
İ (should be İ)
è
When I set the header to
<meta ...
1
vote
1answer
53 views
UTF-8 is giving me question marks
I have this simple PHP-script, which searches a mySQL database and outputs the result to the user. I used to use ISO-8859-1 as my charset, but was advised to use UTF-8. But I have trouble going from ...
3
votes
1answer
86 views
Delphi 5, how to retrieve data from MySQL's tis620 fields?
I have a web application written in PHP which using MySQL as database back-end.
To store my language(Thai) data, I'm using tis620 charset on my database tables, this setting is great for my web ...
3
votes
2answers
90 views
Characters not displaying correctly on a UTF-8 website
I've done everything I can think of, but special characters are not displaying correctly on this webpage.
For example, in the database it's:
But on the site it's:
Nouveaux R�alistes
Here's ...
0
votes
2answers
82 views
PHP Cron Script - read from from CSV file and email (UTF-8?)
I am struggling with this issue for few days now, reading and trying whatever I came across with no solution found:
Here is the bottom line of what I want to do: I have a members only system. when a ...
-1
votes
1answer
85 views
Convert characters to UTF8 in MySQL (é to é)
I've got a MySQL problem. My whole website except my database is in UTF8. I just recently tried to convert it to UTF8 with all kind of commands, but the main issue is still there:
the accents don't ...
1
vote
1answer
45 views
php - utf8 encoding the text twice. Will it have any negative effect? [duplicate]
MySQL Database returns utf8 encoded text. Basically, I used PDO attribute MYSQL_ATTR_INIT_COMMAND and passed:
SET CHARACTER SET utf8
It returns utf8 encoded text. But some text in the database is ...
0
votes
1answer
33 views
Convert output of MySQL query to utf8
I have a table in my database and I want run a query like
SELECT column1, column2 FROM my_table WHERE my_condition;
but I want the mysql to return the column2 in utf8 encoding. Is it any function ...
0
votes
1answer
35 views
Encoding error PHP and Mysql for french [duplicate]
I have a function that adds words in my database and for some reason it's putting them in all weird.
Here is my function :
function change_team($picname, $text){
include 'dbconnector.php';
...
0
votes
0answers
60 views
mysql search utf8 characters with normal characters
I have some utf8 characters in my database like this: "KÃ¥le Hënk" which translates to "Kåle Hënk".
When I try search for "kale" I get no results.
The query is currently use:
SELECT ...
0
votes
0answers
67 views
Correctly distinguish UTF-8 email addresses in MySQL
What is the proper proper MySQL collation for storing email addresses?
I understand that email addresses can be UTF-8.
However, if I want to compare the input email with the email in database, how ...
1
vote
1answer
79 views
Strange Characters when exporting to Excel
Hi im using the next code on php to export to excel. actually it works great.. but i always get strange characters like ? insted of áéíóú etc. (UTF8)
I found that adding..
Response.Charset = ...
0
votes
0answers
33 views
Advice on encoding data in UTF8 vs. standard Latin in rails app with MySQL
I'm developing a Rails app and all has been going well until today when I tried to do some ETL on the data I had made changes to through the app. I was comparing 2 columns. One was standard and the ...
2
votes
2answers
71 views
UTF8 lithuanian characters unrecognized in MySQL database
I have well known but quite difficult to sort out problem here. And yes I was searching on forum but those threads are old enough so I decided to create new post.
So I built a website using WP and ...
-1
votes
1answer
113 views
php - black diamond question mark Issue
Okay. I searched for all possible methods. But this one still keeping me back.
I am using PDO to get the data from MySQL. MySQL data has chars like ä. I just run a query using PDO and json_encode'ing ...
1
vote
3answers
159 views
Getting special characters out of a MySQL database with PHP [duplicate]
I have a table that includes special characters such as ™.
This character can be entered and viewed using phpMyAdmin and other software, but when I use a SELECT statement in PHP to output to a ...
0
votes
1answer
83 views
utf8 not working with mysql
When I echo arabic characters they appear fine but If I echo them from the database they appear as question marks. Here is what I did so far but it is still not working:
charset setting now is:
| ...
0
votes
4answers
48 views
PHP and MySQL encoding UTF8
Hello folks;
We're having some weird issue with the character encoding:
We're using Notepad++ with UTF+8 without BOM and sending information to the database (mysql):
When inserting: "análisis", it ...



