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

How can I add a seperate action listener to all 14 of my buttons at once that can determine player turn?(java) -

Simple file compression in C -

php - Sorting an multidimension array using usort fails -