in reply to Re^7: how does XML::DOM load XML?
in thread how does XML::DOM loadXML?

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^9: how does XML::DOM load XML?
by davorg (Chancellor) on Jan 24, 2007 at 09:56 UTC
      oops..i guess its dave..
      thanks A lot for your warm help
      well... i have solved my problem and giving solution here.
      foreach my $value(@child) { my $val=$value->getChildNodes; if($value->getNodeName eq "Name") { $report .="<strong>".$val->item(0)->getNodeValue ."</strong><br>"; } }
      basically $value type is element so to get value we have to take child first
      then its value in at what position you want or can run in loop.
      i needed at 0 so din't use loop but some other one can take loop here.
      thanks again for you help..
      ashwani