Ver Mensaje Individual
  #6 (permalink)  
Antiguo 07/01/2014, 09:03
Avatar de luis010182
luis010182
 
Fecha de Ingreso: julio-2009
Ubicación: Argentina - Capital Federal
Mensajes: 382
Antigüedad: 14 años, 10 meses
Puntos: 27
Respuesta: Importación archivo XML en Ruso

Código PHP:
<?php
header 
("Content-Type:text/xml");
?>
<your_xml_content>
</your_xml_content>
Código PHP:
<?php
header
('Content-Type: application/xml; charset=utf-8');
?>
<your_xml_content>
</your_xml_content>