Psygno
Psygno

Reputation: 261

print currency symbol near a database fetch number

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

Answers (1)

Vasim Shaikh
Vasim Shaikh

Reputation: 4512

You can print it easily,using '&euro;',

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

Upvotes: 1

Related Questions