I need to convert Numerical code row to Display row i n PHP. Table are on this site what mean some code: http://www.yellowpipe.com/yis/tools/ASCII-HTML-Characters/index.php Is anyone have function to convert it? I realy dont have time to c/p every row, maybe someone already ave it? Thx
function decode_it($string) { return ord(html_entity_decode($string)); } echo decode_it('"').'<br />'; echo decode_it('<').'<br />'; echo decode_it('>').'<br />'; echo decode_it('&').'<br />'; PHP:
Thx, but your function return me 34<br>60<br>62<br>38<br> Code (markup): Don't know where is problem! :/