Does anyone who perhaps is familiar with the FPDF class, know of a script to parse a HTML string and replace characters with their actual key reference ie..
EURO would be 128
Any insights on postcard please.
Thanks,
R
Does anyone who perhaps is familiar with the FPDF class, know of a script to parse a HTML string and replace characters with their actual key reference ie..
EURO would be 128
Any insights on postcard please.
Thanks,
R
This what you are looking for?
http://www.groovything.com/page/charSet.htm
$STRhtml = str_replace ("€","€", $STRhtml);
It is indeed. Thanks a mill.
R