[PHP] new xml class From: Hans H. Anderson (me <email protected>)
Date: 09/29/00

I have a new xml class that uses the expat function and parses XML data
and puts them all into objects/arrays.

see it: http://www.hansanderson.com/php/xml/

For example:

     Data:

                        <html>
                         <head>
                          <title>Hans Anderson's XML Class</title>
                         </head>
                         <body>
                         </body>
                        </html>

Run the data through my class, then access the title like this:

print $xml_html_head_title->get(0); // outputs "Hans Anderson's XML Class"

And it only takes one line to have the data parsed. It's already been a
HUGE time saver for me.

-- 
Hans Anderson -=- me <email protected>
http://www.hansanderson.com | PHP, SQL Databases, Flash 5 Animation &
   http://www.goofiness.com | Programming, Audio Production, Brewmeister.

-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>