Login   Register  
PHP Classes
elePHPant
Icontem

File: example.xml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Diego Feitosa  >  DOM Adapter  >  example.xml  >  Download  
File: example.xml
Role: Sample output
Content type: text/plain
Description: Output of the creation.php example
Class: DOM Adapter
Access XML documents with DOM API in PHP 4 and 5
Author: By
Last change:
Date: 2006-10-13 16:26
Size: 1,018 bytes
 

Contents

Class file image Download
<?xml version="1.0"?>
<!--
	This model was extracted from the PHP Manual at 'DOM Functions' 
	chapter
-->
<book id="listing">
	<title>My lists</title>
	<chapter id="books">
		<title>My books</title>
		<para>
			<informaltable>
				<tgroup cols="4">
					<thead>
						<row>
							<entry>Title</entry>
							<entry>Author</entry>
							<entry>Language</entry>
							<entry>ISBN</entry>
						</row>
					</thead>
					<tbody>
						<row>
							<entry>The Grapes of Wrath</entry>
							<entry>John Steinbeck</entry>
							<entry>en</entry>
							<entry>0140186409</entry>
						</row>
						<row>
							<entry>The Pearl</entry>
							<entry>John Steinbeck</entry>
							<entry>en</entry>
							<entry>014017737X</entry>
						</row>
						<row>
							<entry>Samarcande</entry>
							<entry>Amine Maalouf</entry>
							<entry>fr</entry>
							<entry>2253051209</entry>
						</row>
					</tbody>
				</tgroup>
			</informaltable>
		</para>
	</chapter>
</book>