Bluehost Web Hosting Help
Character sets in PHP
There is a character encoding setting inside of your php.ini file. By default, this is set to the standard Latin encoding (ISO-8859). If you would like to encode your page with different characters, like Arabic or Hindi, you will need to change this.Most character sets will display correctly with UTF-8 encoding. If you're using an Asian character set, you may need to select a different encoding standard. To find out specific information about which character encoding will display your characters correctly Click Here.
You can find your php.ini file in this directory:/public_html/php.ini
To change the character encoding in your php.ini file, find the following line and input your preferred character encoding. In the example below, UTF-8 is the character set.default_charset = "UTF-8"
Note: By default, the default_charset option is commented out. Be sure to delete the leading semi-colon so it does not look like this:;default_charset = "UTF-8"
Recommended Help Content
Character sets in HTML
Instructions to set different character sets in HTML. Note: Not all character sets will be correctly rendered with this encoding format, but most will. You can find specific information about which ch
WordPress not correctly displaying languages
WordPress will not correctly display languages other than English.
PHP pages do not display
If suddenly when you go to your page, you get nothing on the page. You can still get HTML to display, just not PHP. To serve HTML pages to browsers, we don't associate the Apache processes with your 2
Related Help Content
Modifying table columns - phpMyAdmin
A step by step guide on how to manipulate data in your mySQL tables using phpMyAdmin
Managing Your DB Using phpmyadmin
A repository of information on how you can manage your database by using the phpMyAdmin interface.
How to Add Tables to a DB in PhpMyAdmin
Guidance on adding tables to your mySQL database in phpMyAdmin
Import a MySQL Database using phpMyAdmin
How do I import a backup of my database (.sql file) using phpMyAdmin?
MySQL Database Restore
How to Restore your MySQL Database?
Dropping columns from a database table using PhpMyAdmin
A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin
How To Copy A Database Using PHPMyAdmin
A guide to duplicating a MySQL database using phpMyAdmin
How To Run SQL Queries in PHPMyAdmin
A guide on performing a standard SQL query using the phpMyAdmin interface