This question already has an answer here:
- How to display XML in HTML in PHP? 5 answers
in PHP I want to load a XML file (as a text file) and show its content (as a text) on a screen. I have a simple XML in the form
<root> <parent>Parent text. </parent></root>
If I use
$myxmlfilecontent = file_get_contents('./myfile.xml');
echo $myfilecontent;
prints only the content of the node "parent", it prints only "Parent text.", not the whole file content.
When you print XML in an HTML page, the XML is assimilated to HTML, so you do not see the tags.
To see the tags as text, you should replace them with the HTML corresponding entity:
that should do the trick
I recommend you to also enclose the xml into a 'pre' to preserve spaces for presentation
It is printing the whole thing (if you look at the source of the page).
But if the file type is set as HTML, then you will not see the nodes.
You need to tell your browser that the content you send to it (you "echo" it to the browser) is XML. This is done by sending the proper Content-Type header:
You browser will then try to display the XML as best as possible, normally with syntax-highlighting and controls to open and collapse nodes.
Otherwise, by default your browser will try to display the text as HTML and because all those tags are not valid HTML tags, they are hidden. That is the default behavior of a browser.
Add following snipet before any output:
This will force user agent (browser) to treat your output as plain text.
On other hand, you can use some syntax highlighter like discussed here : PHP code to syntax-format XML content in a `pre` tag