i'm reading a xml in php but i've got an error on the parse:
Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 5: parser error : error parsing attribute name
my xml string is:
$xmlString = '<?xml version="1.0" encoding="UTF-8"?>
<messages>
<message>
<date>1352210570</date>
<from>Rui <rui@mail.pt></from>
<subject>Mensagem de Teste</subject>
<url>test.com</url>
</message>
</messages>';
i parse the xml with simplexml_load_string($xmlString);
how can i escape the < and > on the from node??