[ create a new paste ] login | about

Link: http://codepad.org/QUytim28    [ raw code | output | fork | 1 comment ]

PHP, pasted on Nov 10:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?
$string = <<<XML
<xml>
  <body1>
    <div><h1>Hello World</h1></div>
  </body1>
  <body2>
    <div><h2>Goodby Moon</h2></div>
  </body2>
</xml>
XML;

$xml = simplexml_load_string($string);
echo $xml->body1->div->asXML();


Output:
1
<div><h1>Hello World</h1></div>


Create a new paste based on this one


Comments:
posted by itech on Jun 10
its not working....
only Hello World is displaying as output. pls help us
reply