Hola comunidad, ocurre que quiero leer desde php un archivo xml en el cual estoy guardando html en campos CDATA, este es el archivo:
Código:
<?xml version="1.0" encoding="UTF-8"?><file_xml><fecha><![CDATA[31-03-11]]></fecha><consulta><![CDATA[
<div class="box-header">Consulta Actual</div>
<div class="box table">
<table id="table_consulta" cellspacing="0">
<thead>
<tr>
<td>Tipo de Servicio</td>
<td>Fecha</td>
<td>Doctor</td>
<td>Sede</td>
<td>Patologia Principal</td>
<td>Monto</td>
<td>Accion</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<br>
<div align="right"><strong>Total: </strong><strong id="total_consulta">0.00</strong></div>
<br>
]]></consulta></file_xml>
Esto me da el siguiente error:
Warning: simplexml_load_string(): Entity: line 1: parser error : Start tag expected, '<' not found
valide el xml y sale que esta correcto, que puede ser??.