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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -