Parsing Child Nodes with the DOM XML extension in PHP 5

Tuesday, April 8th, 2008

In this last chapter of the series I m going to teach you how to handle the child nodes of an XML document by way of two simple methods called hasChildNode and removeChild respectively. So let s not waste any more time in preliminaries ...

Tracking Parsing Errors with the Tidy Library in PHP 5

Wednesday, July 11th, 2007

Creating well-formed X HTML documents can be a hard-to-accomplish task particularly for PHP developers who need to focus mainly on the data and business layers of their web applications and not on their visual presentation modules. However this issue can be addressed with minor hassles with ...

Parsing Web Document Nodes with the Tidy Library in PHP 5

Tuesday, July 3rd, 2007

Writing well-formatted X HTML code to include in the presentation layers of certain PHP applications can be an annoying and time-consuming process for many web developers. However the Tidy extension that comes integrated with PHP 5 can turn this ugly task into a pleasant experience. Keep reading to ...