The following returns 'btest/b'... Why is that and how can i have it return the entities? Thanks!
<?php
$simple = "<para><note><b>test</b></note></para>";
$p = xml_parser_create();
xml_parse_into_struct($p, $simple, $vals, $index);
xml_parser_free($p);
print_r($vals);
?>