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) -

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -