How to display currency symbols in select list in cakephp with mysql database -
I have currency codes and symbols in the table
CURRENCIES (ID, currency) value ('1', 'EUR (one pound)'), ('2', 'USD ($)') etc. But the euro and pound symbols drop down list. What can be the reason for this and how do I go about fixing it?
back encoding
whenever no eski characters are displayed correctly (Or at all) the problem is encoding. Make sure that your app is using the same encoding (UTF8), unless it is the reason):
- Database table definitions
- Database data
- In your application
-
Comments
Post a Comment