XML to HTML PHP Three Ways Translation Tutorial

XML to HTML Data Intelligence Translation Tutorial

XML to HTML PHP Three Ways Translation Tutorial

One of the great things about PHP programming is the proliferation of solutions which are out there in the Open Source world for various problems you want to solve. With yesterday’s XML to HTML PHP Simplexml Translation Tutorial as shown below, we talked about the HTML5 Global Attributes under the umbrella of HTML data-* Attribute usage, and how a PHP simplexml methodology can help solve problems with a web application that translates XML to HTML, trying to retain “data intelligence”.

We need to tell you that “simplexml” should be spelt “SimpleXML” … we apologize for this … and, more importantly, would like to present, today, two more ways to help with this web application functionality we are seeking …

  1. PHP SimpleXML … as shown yesterday … and new to today’s tutorial …
  2. PHP Expat … a lot like Python’s SAX XML Parser (which we discussed at Python HTML Attribute Parsing Primer Tutorial‘s link) in organizational aspects … and last but not least, and we have used it before is …
  3. PHP DOM Document … is last, but not least … this one we have used before, exemplified by Javascript putElement(s)By via PHP Relative URLs Tutorial

So which is best? Well, if you want to outlaw PHP eval (perhaps for security reasons) then pick PHP Expat. You may want to pick PHP Expat, if you have past experience using the Python SAX XML parser.

However, PHP DOM Document has a lot going for it, in the sense that a lot of what you might expect to do in Javascript DOM coding (but not all) will be available as something you may want to try to do with PHP DOM Document.

And for situations where you know the XML data structure, you can avoid PHP eval usage when you use PHP SimpleXML … mind you, that probably applies to all three options.

The PHP code you can call xml_to_html.php and it changed from yesterday’s purely SimpleXML approach (to also include PHP Expat and PHP DOM Document additional approaches) can be seen at this link.

Please feel free to try these three PHP ways of translating XML to HTML (and trying to retain data intelligence) here or an HTML (with PHP iframe) home grown XML to HTML translation live run here (as of a couple of days back).


Previous relevant XML to HTML PHP Simplexml Translation Tutorial is shown below.

XML to HTML Data Intelligence Translation Tutorial

XML to HTML PHP Simplexml Translation Tutorial

Yesterday’s HTML Data Intelligence More Like XML Primer Tutorial as shown below, talked about the HTML5 Global Attributes under the umbrella of HTML data-* Attribute usage.

You might remember from that …

Along the way doing this we want to mention PHP’s simplexml methods you can read about at this link, which are powerful if you know what the data structure involved is. But today we are writing a home grown translator (or XML parser) to translate XML to HTML in a more “act dumb” generic sense, where you assume no knowledge of the data structure. We acknowledge that it may fall over for some data, especially as the concept is in its infancy.

… and that PHP simplexml usage was best “if you know what the data structure involved is”. But in that statement we’d neglected the “onion of the 4th dimension” wonders of PHP’s eval method, and so, today, we allow PHP simplexml methods to team up with PHP eval to preanalyze XML input data to see whether it can be parsed without knowing ahead of time what that XML data structure entails … cute, huh?! Think, personally, PHP eval (and Javascript eval) are responsible for more “cute, huh?!’s” than any other bits of functionality. Of course, you must factor in that a lot of people either think of eval as …

  • a security risk … or a …
  • kludge

… but, personally, think it’s great … remember it back in the early days of Basic as well … just Basic … not Visual Basic.

Piecing together PHP eval often blows my mind, with the difficulty of the delimitation, but you may find all that a breeze … and have heard that they call the wind Maria … but who am I to question?!

The bottom line to this is that the complication of yesterday’s (need to do) …

  1. small amounts of XML data using method=’GET’ to xml_to_html.html
  2. large amounts of XML data using method=’POST’ to xml_to_html.php (which clones xml_to_html.html to some user specific HTML that it calls)

… is now a bit obsolete, because today’s changes also add to the PHP xml_to_html.php an HTML form to enable POST method callbacks, that will be okay for quite sizeable amounts of data. As per usual, though, the flip side is that not everybody has Apache/PHP hosting to be able to use this simplexml PHP functionality, and so a feature of the relationship between xml_to_html.html and xml_to_html.php is that the HTML uses an iframe of an absolute URL for the PHP so that it can use $_SERVER[‘HTTP_REFERER’] as a means to redirect back to the parent HTML (perhaps on a non //www.rjmprogramming.com.au domain (maybe not using Apache/PHP hosting)) as necessary, or back to itself otherwise.

The PHP code you can call xml_to_html.php and it changed from yesterday in this way.

Please feel free to try a PHP simplexml way of translating XML to HTML (and try to retain data intelligence) here or an HTML (with PHP iframe) home grown XML to HTML translation live run here (as of yesterday).


Previous relevant XML to HTML Data Intelligence Translation Tutorial is shown below.

XML to HTML Data Intelligence Translation Tutorial

XML to HTML Data Intelligence Translation Tutorial

Yesterday, with HTML Data Intelligence More Like XML Primer Tutorial as shown below, we talked about the HTML5 Global Attributes under the umbrella of HTML data-* Attribute usage.

You’d be right in guessing that now we want to try some XML to HTML translations making use of this.

Along the way doing this we want to mention PHP’s simplexml methods you can read about at this link, which are powerful if you know what the data structure involved is. But today we are writing a home grown translator (or XML parser) to translate XML to HTML in a more “act dumb” generic sense, where you assume no knowledge of the data structure. We acknowledge that it may fall over for some data, especially as the concept is in its infancy.

The HTML code you can call xml_to_html.html supervises some PHP you could call xml_to_html.php (which has the dual purpose of demonstrating simplexml and accepting POSTed user defined data (to translate) from the HTML form of its parent. The parent offers two forms for …

  1. small amounts of XML data using method=’GET’ to xml_to_html.html
  2. large amounts of XML data using method=’POST’ to xml_to_html.php (which clones xml_to_html.html to some user specific HTML that it calls)

Our tutorial today thanks w3schools for some XML examples from this link and that link.

So please try a live run and do some XML to HTML translations that try to retain “data intelligence”, in sympathy with the HTML DOM getAttribute method available in Javascript.


Previous relevant HTML Data Intelligence More Like XML Primer Tutorial is shown below.

HTML Data Intelligence More Like XML Primer Tutorial

HTML Data Intelligence More Like XML Primer Tutorial

Today we wanted to start you thinking on the subject of “data with intelligence”. Maybe you think of HTML as representing “data with intelligence” because it brings you, via the Internet so much great information. That is true, but generally speaking, it is carrying “display” information, if it has not been massaged through a server side language, nor through some Ajax “smarts” that will pick up “data intelligence”. The bottom line is, generally speaking, it is not carrying the structured “intelligence” (the protocols) XML and JSON (often) carry.

However, HTML can be structured to be more like XML, and we delve into a bit of this by talking about a set of HTML Global Attributes that were added when HTML5 came out, which you can read more about with the link HTML data-* Attribute.

We have a dual purpose with today’s illustrative …

  1. HTML sidtest.html
  2. Javascript sidtest.js

… which is …

  1. this “poking our toes into the water” approach to HTML data-* Attribute HTML “data with intelligence” (as illustrated, in the code with all the HTML element data-type=”[HTML-element-type]” usages (shaken, not stirred) throughout, like (the header <head> … </head> section’s) …

    <title data-type="title" id='myhtitle' title='myhtitle title'>HTML Header Id and Title Proof of Concept Ideas of Source Code Printout - RJM Programming - September, 2015</title>

    … and how, subsequently, you could use Javascript code like …

    var huh=document.getElementById('myhtitle');
    alert('Your HTML tag ' + huh.getAttribute('data-type') + ' element has content as per ' + huh.innerHTML);

    … to access this information) …
  2. getting used to the idea that all HTML elements, even those in the header <head> … </head> section (as well as the usual body <body> … </body> section) can be assigned id= (and that you can make use of these) … even inline Javascript <script> … </script> elements

How are these related? It’s all to do with using Javascript to make use of the HTML slightly less in terms of a carrier of “display” information, and slightly more as, possibly, also a carrier of “data intelligence”. Even though there is, now with HTML5, the existence of HTML data-* Attribute to help facilitate some of these thoughts for the use of some “data intelligence” with HTML, you should go easy on this, perhaps, as the most efficient way to proceed when there is lots of data, as XML was designed for “data intelligence” that is “big time” or dealing with large data sets, but you may have a modest application where you want to “carry” that small amount of database “data intelligence” with you in your HTML, and maybe “kill two birds with one stone”, those two birds being the “display bird” and the “data intelligence bird” … please note, no magpies were hurt during the construction of this blog posting.

The functionality of today’s live run is to “print out” (on a web browser) the coding of our sidtest.html, and so, by running it, you’ll see what we mean.

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in Database, eLearning, Tutorials and tagged , , , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

21 Responses to XML to HTML PHP Three Ways Translation Tutorial

  1. I saw lots of website but I feel this one contains something special in it in it

  2. shoot says:

    So happy to get discovered this submit.. Certainly valuable point of view, thank you for expression.. Isn’t it awesome when you obtain a superb post? I appreciate you stating your point of view..

  3. Soon after examine many on the weblog articles on your web-site nowadays, and I the truth is such as your way of blogging and site-building. I saved that in an effort to my individual book mark world wide web website checklist and can likely be checking back shortly. Could you attempt my web site simply because correctly and also inform me what you think.

  4. drone filming hull says:

    Thank you for the sensible critique. Me & my cousin were just preparing to complete a bit investigation about this. We grabbed a book from our local library but I consider I learned far more from this post. I’m really glad to see such excellent information being shared freely out thereโ€ฆ

    https://kidblog.org/class/hull-aerial-filming/posts/4cw3r2ztg59aszeu6cv2dc6d2

  5. Jimmy says:

    I really like what you guys are usually up too. This type of clever work and exposure!
    Keep up the fantastic works guys I’ve incorporated you guys to my blogroll.

  6. rule says:

    I am now not certain where you are getting your information, but good topic. I needs to spend some time learning more or working out more. Thank you for excellent info I used to be on the lookout for this information for my mission.

  7. Smashing says:

    I believe this website has some very wonderful information for everyone. “Dealing with network executives is like being nibbled to death by ducks.” by Eric Sevareid.

  8. perfected says:

    Thank you for sharing superb informations. Your web-site is very cool. I’m impressed by the details that you have on this site. It reveals how nicely you understand this subject. Bookmarked this web page, will come back for more articles. You, my friend, ROCK! I found simply the information I already searched all over the place and simply could not come across. What a perfect web site.

  9. Dreamy says:

    Appreciate the entry you provided.. Actually advantageous perspective, thank you for sharing.. Excellent views you have got here.. Get pleasure from the blog you made available..

  10. I love says:

    As a Newbie, I am constantly searching online for articles that can be of assistance to me. Thank you

  11. It is really a nice and helpful piece of information. I am glad that you simply shared this useful information with us. Please stay us informed like this. Thank you for sharing.

  12. perfection says:

    I enjoy, cause I found just what I was having a look for. You have ended my four day long hunt! God Bless you man. Have a nice day. Bye

  13. Great tremendous issues here. I am very glad to peer your post. Thank you so much and i’m having a look ahead to touch you. Will you please drop me a e-mail?

  14. Sam Wallace says:

    Thanks for sharing such great informations with us, i value it. I just intended to leave a comment in your guestbook and state: Keep up the good work!

  15. Matt Duncan says:

    Appreciating the time and energy you put into your blog and detailed information you offer. It’s awesome to come across a blog every once in a while that isn’t the same old rehashed information. Great read! I’ve saved your site and I’m adding your RSS feeds to my Google account.

  16. Clair Im says:

    Thanks for sharing excellent informations. Your site is very cool. I’m impressed by the details that you’ve on this blog. It reveals how nicely you perceive this subject. Bookmarked this web page, will come back for extra articles. You, my pal, ROCK! I found simply the information I already searched all over the place and just could not come across. What an ideal web site.

  17. I’ve recently started a blog, the information you provide on this website has helped me greatly. Thank you for all of your time & work.

  18. Marcia Guell says:

    I was reading some of your posts on this website and I conceive this web site is very instructive! Keep posting.

  19. You could certainly see your skills within the work you write. The world hopes for more passionate writers such as you who aren’t afraid to mention how they believe. At all times follow your heart.|

  20. I do believe all of the ideas you have introduced on your post. They’re really convincing and will definitely work. Still, the posts are very brief for newbies. Could you please extend them a little from subsequent time? Thank you for the post.

  21. Sigrid says:

    This info is worth everyone’s attention. When can I find out more?|

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>