bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/0.1
1
by Henrik G.
First seed of Lenasys ... Needs to be Organized Further |
1 |
<html>
|
2 |
<body>
|
|
3 |
<pre>
|
|
4 |
<?php
|
|
5 |
||
6 |
$file = '../XMLData/example1.xml'; |
|
7 |
||
8 |
$dom = new DomDocument; |
|
9 |
$dom->preserveWhiteSpace = FALSE; |
|
10 |
$dom->load($file); |
|
11 |
||
12 |
$person = $dom->documentElement; |
|
13 |
echo $person->tagName."<br>"; |
|
14 |
foreach ($person->childNodes as $child){ |
|
15 |
echo " ".$child->tagName; |
|
16 |
echo "<br> ".$child->nodeValue."<br>"; |
|
17 |
}
|
|
18 |
||
19 |
?>
|
|
20 |
</pre>
|
|
21 |
</body>
|
|
22 |
</html>
|