Hello Sir ,i want to read and XML file in textarea after that i want edit this file and display this file in my webpage .I have code for this but my content display out of textarea .Please help me.my code is here-
<?php
$doc = new DOMDocument();
$doc->load( "../about.xml" );
$content = $doc->getElementsByTagName( "content" );
foreach( $content as $value)
{
$contentone = $value->getElementsByTagName( "contentone" );
$contentones = $contentone->item(0)->nodeValue;
}
?>
<html>
<body>
<textarea name="aboutusData" id="aboutusData" rows="15" cols="30" ><?php echo "$contentones <br/>";?></textarea>
</body>
</html>