Home > Articles > Web Services > XML

Formatting Dynamically Generated XML with SAX

In the third of a three-part series, Vikram Vaswami provides some practical examples demonstrating how data stored in an SQL-compliant database system can be converted into well-formed XML.
Like this article? We recommend

Like this article? We recommend

Note that the code listings in this article assume the existence of a MySQL database and a familiarity with PHP's database access functions (specifically, its MySQL functions). In case you don't already have MySQL, you can download it from http://www.mysql.com/, and SQL dump files for the database tables used in this article may be obtained from this companion web site of this article's related book, (http://www.xmlphp.com).

After you understand the basics, it's possible to apply simple XML programming techniques to do some fairly complex things. Consider Listing 1, which uses PHP's MySQL functions to retrieve a complete list of all the records in a user-specified table, convert this result set to XML, and format it into a HTML representation using PHP's SAX parser.

Listing 1—Reading a Database Table Using the DOM, and Formatting It Into HTML with SAX

<?php
// database parameters
// get these via user input
$host = "localhost";
$user = "joe";
$pass = "cool";
$db = "web";
$table = "bookmarks";

// segment 1 begins

// query database for records
$connection = mysql_connect($host, $user, $pass) or die ("Unable to 
connect!");
mysql_select_db($db) or die ("Unable to select database!");
$query = "SELECT * FROM $table";
$result = mysql_query($query) or die ("Error in query: $query. " . 
mysql_error());

if(mysql_num_rows($result) > 0)
{
   // create DomDocument object
   $doc = new_xmldoc("1.0");
   
   // add root node
   $root = $doc->add_root("table");
   $root->set_attribute("name", $table);

   // create nodes for structure and data
   $structure = $root->new_child("structure", "");
   $data = $root->new_child("data", "");

   // let's get the table structure first
   // create elements for each field name, type and length
   $fields = mysql_list_fields($db, $table, $connection);
   for ($x=0; $x<mysql_num_fields($fields); $x++) 
   {
      $field = $structure->new_child("field", "");

      $name = mysql_field_name($fields, $x);
      $length = mysql_field_len($fields, $x);
      $type = mysql_field_type($fields, $x);
   
      $field->new_child("name", $name);   
      $field->new_child("type", $type);   
      $field->new_child("length", $length);   
   }
   
   // move on to getting the raw data (records)
   // iterate through result set
   while($row = mysql_fetch_row($result))
   {
      $record = $data->new_child("record", "");
      foreach ($row as $field)
      {
         $record->new_child("item", $field);
      }
   }
   
   // dump the tree as a string
   $xml_string = $doc->dumpmem();
}

// close connection
mysql_close($connection);

// segment 1 ends

// at this point, a complete representation of the table is stored in 
$xml_string
// now proceed to format this into HTML with SAX

// segment 2 begins

// array to hold HTML markup for starting tags
$startTagsArray = array(
'TABLE' => '<html><head></head><body><table border="1" cellspacing="0" 
cellpadding="5">',
'STRUCTURE' => '<tr>',
'FIELD' => '<td bgcolor="silver"><font face="Arial" size="-1">',
'RECORD' => '<tr>',
'ITEM' => '<td><font face="Arial" size="-1">',
'NAME' => '<b>',
'TYPE' => '&nbsp;&nbsp;<i>(',
'LENGTH' => ', '
);

// array to hold HTML markup for ending tags
$endTagsArray = array(
'TABLE' => '</body></html></table>',
'STRUCTURE' => '</tr>',
'FIELD' => '</font></td>',
'RECORD' => '</tr>',
'ITEM' => '&nbsp;</font></td>',
'NAME' => '</b>',
'TYPE' => '',
'LENGTH' => ')</i>'
);

// call this when a start tag is found
function startElementHandler($parser, $name, $attributes)
{
   global $startTagsArray;
   if($startTagsArray[$name])
   {
      // look up array for this tag and print corresponding markup
      echo $startTagsArray[$name];
   }
   
}

// call this when an end tag is found
function endElementHandler($parser, $name)
{
   global $endTagsArray;
   if($endTagsArray[$name])
   {
      // look up array for this tag and print corresponding markup
      echo $endTagsArray[$name];
   }
}

// call this when character data is found
function characterDataHandler($parser, $data)
{
   echo $data;
}

// initialize parser
$xml_parser = xml_parser_create();

// turn off whitespace processing
xml_parser_set_option($xml_parser,XML_OPTION_SKIP_WHITE, TRUE);
// turn on case folding
xml_parser_set_option($xml_parser, XML_OPTION_CASE_FOLDING, TRUE);

// set callback functions
xml_set_element_handler($xml_parser, "startElementHandler", 
"endElementHandler");
xml_set_character_data_handler($xml_parser, "characterDataHandler");

// parse XML
if (!xml_parse($xml_parser, $xml_string, 4096)) 
{
   $ec = xml_get_error_code($xml_parser);
   die("XML parser error (error code " . $ec . "): " . 
xml_error_string($ec) . "<br>Error occurred at line " . 
xml_get_current_line_number($xml_parser) . ", column " . 
xml_get_current_column_number($xml_parser) . ", byte offset " . 
xml_get_current_byte_index($xml_parser));
}

// all done, clean up!
xml_parser_free($xml_parser);

// segment 2 ends

?>

Listing 1 can be divided into two main segments:

  • Retrieving database records and constructing an XML document from them

  • Converting the XML document into an HTML page

The first segment is concerned with the retrieval of the records from the table (using a catch-all SELECT * FROM table query), and with the dynamic generation of a DOM tree in memory using the DOM functions discussed previously. Once generated, this tree would be stored in the PHP variable $xml_string, and would look a lot like Listing 2.

Listing 2—An XML Representation of a MySQL Table

<?xml version="1.0"?>
<table name="bookmarks">
   <structure>
      <field>
         <name>category</name>
         <type>string</type>
         <length>255</length>
      </field>
      <field>
         <name>name</name>
         <type>string</type>
         <length>255</length>
      </field>
      <field>
         <name>url</name>
         <type>string</type>
         <length>255</length>
      </field>
   </structure>
   <data>
      <record>
         <item>News</item>
         <item>CNN.com</item>
         <item>http://www.cnn.com/</item>
      </record>
      <record>
         <item>News</item>
         <item>Slashdot</item>
         <item>http://www.slashdot.org/</item>
      </record>
      <record>
         <item>Shopping</item>
         <item>http://www.amazon.com/</item>
      </record>
      <record>
         <item>Technical Articles</item>
         <item>Melonfire</item>
         <item>http://www.melonfire.com/</item>
      </record>
      <record>
         <item>Shopping</item>
         <item>CDNow</item>
         <item>http://www.cdnow.com/</item>
      </record>
   </data>
</table>

Taking the Scenic Route

You may be wondering whether the long, convoluted process outlined in Listing 1 was even necessary. Strictly speaking, it wasn't—I could have achieved the same effect with PHP's MySQL functions alone, completely bypassing the DOM and SAX parsers (and obtaining a substantial performance benefit as a result). XML was added to the equation primarily for illustrative purposes, to demonstrate yet another of the myriad uses to which PHP's DOM and SAX extensions can be put when working with XML-based applications.

Note that the approach outlined in Listing 1 is not recommended for a production environment, simply because of the performance degradation likely to result from using it. When working with tables containing thousands of records, the process of retrieving data, converting it to XML, parsing the XML, and formatting it into HTML would inevitably be slower than the shorter, simpler process of directly converting the result set into HTML using PHP's native functions and data structures.

After the MySQL result set has been converted into XML, it's fairly simple to parse it using SAX, and to replace the XML elements with corresponding HTML markup. This HTML markup is then sent to the browser, which displays it as a neatly formatted table (see Figure 1).

Figure 1Figure 1 The result of formatting a dynamically generated, XML-encoded database schema into an HTML table with SAX

Revisiting SAX

SAX, the Simple API for XML, provides an efficient, event-driven approach to parsing an XML document. If you're not familiar with how it works, or with the SAX functions used in Listing 1, refer to Chapter 2, "PHP and the Simple API for XML (SAX)," in the book, XML and PHP (New Riders, 2002), for detailed information, or take a look at the article "Using PHP With XML" (http://www.melonfire.com/community/columns/trog/article.php?id=71) on the Melonfire web site (http://www.melonfire.com/).

It's interesting to note that I could just as easily have accomplished this using XSLT instead of SAX. The process is fairly simple, and you should attempt to work it out for yourself. In case you get hung up on some of the more arcane aspects of XSLT syntax, Listing 3 has a stylesheet you can use to perform the transformation.

Listing 3 - An XSLT Stylesheet to Format an XML Table Representation Into HTML

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<!-- set up page template -->
<xsl:template match="/">
   <html>
   <head>
   <basefont face="Arial" />
   </head>
   <body>
   <table border="1" cellspacing="0" cellpadding="5">
   <xsl:apply-templates select="//structure" />
   <xsl:apply-templates select="//data" />
   </table>
   </body>
   </html>
</xsl:template>

<!-- read structure data, set up first row of table -->
<xsl:template match="//structure">
   <tr>
   <!-- iterate through field list, print field information -->
   <xsl:for-each select="field">
   <td bgcolor="silver"><font face="Arial" size="-1"><b><xsl:value-of 
select="name" /></b> <i>(<xsl:value-of select="type" />, <xsl:value-of 
select="length" />)</i></font></td> 
   </xsl:for-each>
   </tr>
</xsl:template>

<!-- read records -->
<xsl:template match="//data">
   <!-- iterate through records -->
   <xsl:for-each select="record">
   <tr>
         <!-- iterate through fields of each record -->
         <xsl:for-each select="item">
         <td><font face="Arial" size="-1"><xsl:value-of 
select="." /></font>&#160;</td>
         </xsl:for-each>
   </tr>
   </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

About This Article

This article is excerpted from XML and PHP by Vikram Vaswani (New Riders Publishing, 2002). Refer to Chapter 7, "PHP, XML, and Databases," for more detailed information on the material covered in this article, or drop by the PHP section (http://www.melonfire.com/community/columns/trog/archives.php?category=PHP) on the Melonfire web site (http://www.melonfire.com/) for more tutorials.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020