Help for this page

Select Code to Download


  1. or download this
    <parent_node>
    <node1><child_node>stuff_I_can_get</child_node></node1>
    <node2><child_node_a>stuff_I_want_1</child_node_a></node2>
    <node2><child_node_a>stuff_I_want_2</child_node_a></node2>
    </parent_node>
    
  2. or download this
    foreach $test($dom->findnodes('/parent_node'))
    {
        $mystring = $test->findnodes('./node2/child_node_a');
    }