Website URL
https://rvalldecabres.great-site.net
Other Information
After creating my database (importing from localhost built with XAMPP) I obtain
these:
SHOW SESSION VARIABLES LIKE ‘character_set_%’ results in:
character_set_client utf8mb4
character_set_connection utf8mb4
character_set_database latin1
character_set_filesystem binary
character_set_results utf8mb4
character_set_server latin1**
character_set_system utf8
SHOW SESSION VARIABLES LIKE ‘collation_%’
collation_connection utf8mb4_unicode_ci
collation_database latin1_swedish_ci**
collation_server latin1_swedish_ci**
The same commands in localhost
SHOW SESSION VARIABLES LIKE ‘character_set_%’;
character_set_client utf8mb4
character_set_connection utf8mb4
character_set_database utf8mb4
character_set_filesystem binary
character_set_results utf8mb4
character_set_server utf8mb4
character_set_system utf8
SHOW SESSION VARIABLES LIKE ‘collation_%’;
collation_connection utf8mb4_unicode_ci
collation_database utf8mb4_general_ci
collation_server utf8mb4_general_ci
I had no problems of visualizing characters like À, é in localhost.
But problems appers in my web site. I do not visualize À, é and also do not obtain the same response in SQL statements including _
I guess the reason is incoherence in shown parameters.