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

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -