this is my link to getting XML File:-XML LINKthis is my code:-\[code\]<?phpfunction convertNodeValueChars($node) { if ($node->hasChildNodes()) { foreach ($node->childNodes as $childNode) { if ($childNode->nodeType == XML_TEXT_NODE) { $childNode->nodeValue = http://stackoverflow.com/questions/15634291/iconv('utf-8', 'ascii//TRANSLIT', $childNode->nodeValue); } convertNodeValueChars($childNode); } } } $doc = new DOMDocument(); $doc->load('http://services.gisgraphy.com/geoloc/search?lat=13o6&lng=80o12&radius=7000'); convertNodeValueChars($doc->documentElement); $doc->save('general.xml'); ?>\[/code\]1) i am try to remove ASCII Char to Normal Char
2) want to Remove Name-Space of XML File this is contains name-space\[code\]<results xmlns="http://gisgraphy.com">\[/code\]
3) want to save as another XML file
2) want to Remove Name-Space of XML File this is contains name-space\[code\]<results xmlns="http://gisgraphy.com">\[/code\]
3) want to save as another XML file