tags:

views:

64

answers:

2
A: 

Once you have that array properly formatted you can do something like this in PHP:

foreach ($langClarContent as $char){
echo htmlspecialchars_decode($char);
}
ssergei
Thanks,this helps a lot, didnt solved my problem fully, but helps enough to solve it :D.Thanks a lot.i have a file full of htmlcodes, i wish to create the same file but with the utf twins inside it...
DartesMartes
+1  A: 

Note.. Htmlspecialchar only converts some of the characters.. if you want to convert all characters use: html_entity_decode

http://th.php.net/manual/en/function.html-entity-decode.php

Chris
Thnaks a bunch, i was needing exactly this....
DartesMartes