Reputation: 261
If I have a price field on mysql table, with a decimal number, and I fetch the entire row to view it in a table (via Codeigniter 3 with the:
<?php echo $this->table->generate($query); ?>
method ).
How can I add the € symbol near the decimal number?
Upvotes: 1
Views: 215
Reputation: 4512
You can print it easily,using '€'
,
<?php echo '€';echo $this->table->generate($query); ?>
Upvotes: 1