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 '€'
,
<?php echo '€';echo $this->table->generate($query); ?>
Comments
Post a Comment