php - print currency symbol near a database fetch number -


if have price field on mysql table, decimal number, , fetch entire row view in table (via codeigniter 3 the:

 <?php echo $this->table->generate($query); ?>  

method ).

how can add € symbol near decimal number?

you can print easily,using '&euro;',

 <?php echo '&euro;';echo $this->table->generate($query); ?>  

Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -