Jump to content

How to echo this exactly?


Thauwa

Recommended Posts

Hi

I once found out how to do this 4 years ago but I lost my backups and memory on the matter.

 

I want this xml to be echoed? out as it is.

When I try the standard echo and print, I get the first two lines of the code in gray when I view the page's source. I get no xml at all.

 

<?xml version="1.0" encoding="utf-8"?>


<!DOCTYPE blah [

<!ELEMENT cart (title, items)>

<!ELEMENT title (#PCDATA)>

<!ELEMENT items (item)+>	

<!ELEMENT item (prive, deprive, onprive+)>

<!ELEMENT security (#PCDATA)>

<!ELEMENT answer (#PCDATA)>

<!ATTLIST answer correct (yeah) #IMPLIED>

]>

 

this is followed by the standard displaying of xml items

 

could anyone help me over here?

thanks in advance...

Link to comment
https://forums.phpfreaks.com/topic/257051-how-to-echo-this-exactly/
Share on other sites

Do you want to just display it as it is in the code blocks, or actually serve an XML document?

 

If the first, use htmlspecialchars() as mentioned. If the second, you'll need to use a header to set the content type to XML.

header('Content-Type: text/xml; charset=utf-8');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.