There is an easier way to do this:
You can create a section symbol using FPDF using the ascii: chr(167) code.
Good practice to make it permanent. At the top of your script add:
define('SECTION',chr(167));
Now you can use SECTION in your script to print the euro symbol. For instance:
echo SECTION.'1.1';
Β§1.1 : Β§1.1
Note. This will also work for other characters with chr(ascii) , where ascii is the character of the ascii character. You can find an overview of ascii codes on this page: http://www.atwebresults.com/ascii-codes.php?type=2
source share