I am really trying to show what htmlentities gives me, but it does not give a euro either; for the symbol €.
I'm trying to
echo htmlentities(htmlentities("LISBOA-VIENA DESDE 99€ TAXAS INCLUÍDAS, RESERVE JÁ",ENT_COMPAT,ISO-8859-1),ENT_COMPAT,ISO-8859-1);
echo '<br>';
echo htmlentities(htmlentities("LISBOA-VIENA DESDE 99€ TAXAS INCLUÍDAS, RESERVE JÁ",ENT_COMPAT,UTF-8),ENT_COMPAT,UTF-8);
and for both I get
LISBOA-VIENA DESDE 99 € TAXAS INCLU & Iacute; DAS, RESERVE J & Aacute;
LISBOA-VIENA DESDE 99 € TAXAS INCLU & Iacute; DAS, RESERVE J & Aacute;
I never get a euro;
Does anyone know how to do this correctly?
source
share